Remove extraneous semicolons

They cause a warning (-Wextra-semi) that can lead to a compile error
(-Werror).
This commit is contained in:
Shahbaz Youssefi 2019-06-25 12:08:10 -04:00 committed by Shahbaz Youssefi
parent 4e6b9ea329
commit 6cca0e983e
3 changed files with 3 additions and 3 deletions

View file

@ -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) { \