Remove unnecessary semi-colons and add warning about them
These are causing integration issues with Chromium down stream since it is more strict about these.
This commit is contained in:
parent
696703800e
commit
7c9accb653
7 changed files with 18 additions and 17 deletions
|
|
@ -135,8 +135,8 @@ struct TSampler { // misnomer now; includes images, textures without sampler,
|
|||
bool isYuv() const { return yuv; }
|
||||
#endif
|
||||
void setCombined(bool c) { combined = c; }
|
||||
void setBasicType(TBasicType t) { type = t; };
|
||||
TBasicType getBasicType() const { return type; };
|
||||
void setBasicType(TBasicType t) { type = t; }
|
||||
TBasicType getBasicType() const { return type; }
|
||||
bool isShadow() const { return shadow; }
|
||||
bool isArrayed() const { return arrayed; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue