GCC/Clang warning fix - unsigned/signed mismatch in comparison
This commit is contained in:
parent
9cc6cd3ef4
commit
1be2ffa7cd
1 changed files with 1 additions and 1 deletions
|
|
@ -267,7 +267,7 @@ public:
|
||||||
localSizeSpecId[dim] = id;
|
localSizeSpecId[dim] = id;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
unsigned int getLocalSizeSpecId(int dim) const { return localSizeSpecId[dim]; }
|
int getLocalSizeSpecId(int dim) const { return localSizeSpecId[dim]; }
|
||||||
|
|
||||||
void setXfbMode() { xfbMode = true; }
|
void setXfbMode() { xfbMode = true; }
|
||||||
bool getXfbMode() const { return xfbMode; }
|
bool getXfbMode() const { return xfbMode; }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue