Remove useless semicolons

This commit is contained in:
scribam 2023-07-22 14:51:11 +02:00 committed by arcady-lunarg
parent fe82779952
commit c81b34fb24
4 changed files with 5 additions and 5 deletions

View file

@ -9214,7 +9214,7 @@ void TParseContext::addQualifierToExisting(const TSourceLoc& loc, TQualifier qua
// TParseContext::declareBlock.
if (!symbol && qualifier.hasBufferReference()) {
TTypeList typeList;
TType blockType(&typeList, identifier, qualifier);;
TType blockType(&typeList, identifier, qualifier);
TType blockNameType(EbtReference, blockType, identifier);
TVariable* blockNameVar = new TVariable(&identifier, blockNameType, true);
if (! symbolTable.insert(*blockNameVar)) {

View file

@ -328,7 +328,7 @@ std::unordered_map<const char*, int, str_hash, str_eq>* KeywordMap = nullptr;
std::unordered_set<const char*, str_hash, str_eq>* ReservedSet = nullptr;
#endif
};
}
namespace glslang {

View file

@ -865,6 +865,6 @@ void PropagateNoContraction(const glslang::TIntermediate& intermediate)
precise_object_accesschains.erase(precise_object_accesschain);
}
}
};
}
#endif // GLSLANG_WEB