Remove useless semicolons
This commit is contained in:
parent
fe82779952
commit
c81b34fb24
@ -934,7 +934,7 @@ Id Builder::makeArrayDebugType(Id const baseType, Id const componentCount)
|
|||||||
|
|
||||||
Id Builder::makeVectorDebugType(Id const baseType, int const componentCount)
|
Id Builder::makeVectorDebugType(Id const baseType, int const componentCount)
|
||||||
{
|
{
|
||||||
return makeSequentialDebugType(baseType, makeUintConstant(componentCount), NonSemanticShaderDebugInfo100DebugTypeVector);;
|
return makeSequentialDebugType(baseType, makeUintConstant(componentCount), NonSemanticShaderDebugInfo100DebugTypeVector);
|
||||||
}
|
}
|
||||||
|
|
||||||
Id Builder::makeMatrixDebugType(Id const vectorType, int const vectorCount, bool columnMajor)
|
Id Builder::makeMatrixDebugType(Id const vectorType, int const vectorCount, bool columnMajor)
|
||||||
@ -4071,4 +4071,4 @@ void Builder::dumpModuleProcesses(std::vector<unsigned int>& out) const
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}; // end spv namespace
|
} // end spv namespace
|
||||||
|
@ -9214,7 +9214,7 @@ void TParseContext::addQualifierToExisting(const TSourceLoc& loc, TQualifier qua
|
|||||||
// TParseContext::declareBlock.
|
// TParseContext::declareBlock.
|
||||||
if (!symbol && qualifier.hasBufferReference()) {
|
if (!symbol && qualifier.hasBufferReference()) {
|
||||||
TTypeList typeList;
|
TTypeList typeList;
|
||||||
TType blockType(&typeList, identifier, qualifier);;
|
TType blockType(&typeList, identifier, qualifier);
|
||||||
TType blockNameType(EbtReference, blockType, identifier);
|
TType blockNameType(EbtReference, blockType, identifier);
|
||||||
TVariable* blockNameVar = new TVariable(&identifier, blockNameType, true);
|
TVariable* blockNameVar = new TVariable(&identifier, blockNameType, true);
|
||||||
if (! symbolTable.insert(*blockNameVar)) {
|
if (! symbolTable.insert(*blockNameVar)) {
|
||||||
|
@ -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;
|
std::unordered_set<const char*, str_hash, str_eq>* ReservedSet = nullptr;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
};
|
}
|
||||||
|
|
||||||
namespace glslang {
|
namespace glslang {
|
||||||
|
|
||||||
|
@ -865,6 +865,6 @@ void PropagateNoContraction(const glslang::TIntermediate& intermediate)
|
|||||||
precise_object_accesschains.erase(precise_object_accesschain);
|
precise_object_accesschains.erase(precise_object_accesschain);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
#endif // GLSLANG_WEB
|
#endif // GLSLANG_WEB
|
||||||
|
Loading…
x
Reference in New Issue
Block a user