Remove extraneous semicolons
They cause a warning (-Wextra-semi) that can lead to a compile error (-Werror).
This commit is contained in:
parent
4e6b9ea329
commit
6cca0e983e
3 changed files with 3 additions and 3 deletions
|
|
@ -3789,7 +3789,7 @@ TIntermTyped* TIntermediate::promoteConstantUnion(TBasicType promoteTo, TIntermC
|
|||
|
||||
for (int i=0; i < size; i++) {
|
||||
|
||||
#define PROMOTE(Set, CType, Get) leftUnionArray[i].Set(static_cast<CType>(rightUnionArray[i].Get()));
|
||||
#define PROMOTE(Set, CType, Get) leftUnionArray[i].Set(static_cast<CType>(rightUnionArray[i].Get()))
|
||||
|
||||
#define TO_ALL(Get) \
|
||||
switch (promoteTo) { \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue