Commit 1be2ffa7 by baldurk

GCC/Clang warning fix - unsigned/signed mismatch in comparison

parent 9cc6cd3e
......@@ -267,7 +267,7 @@ public:
localSizeSpecId[dim] = id;
return true;
}
unsigned int getLocalSizeSpecId(int dim) const { return localSizeSpecId[dim]; }
int getLocalSizeSpecId(int dim) const { return localSizeSpecId[dim]; }
void setXfbMode() { xfbMode = true; }
bool getXfbMode() const { return xfbMode; }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment