Remove extra semicolons (#2170)
This is causing downstream users compiler errors if they have Werror or other particularly restrictive flags turned on.
This commit is contained in:
parent
0b66fa3b62
commit
b5757b9500
@ -227,8 +227,8 @@ enum ComputeDerivativeMode {
|
|||||||
|
|
||||||
class TIdMaps {
|
class TIdMaps {
|
||||||
public:
|
public:
|
||||||
TMap<TString, int>& operator[](int i) { return maps[i]; };
|
TMap<TString, int>& operator[](int i) { return maps[i]; }
|
||||||
const TMap<TString, int>& operator[](int i) const { return maps[i]; };
|
const TMap<TString, int>& operator[](int i) const { return maps[i]; }
|
||||||
private:
|
private:
|
||||||
TMap<TString, int> maps[EsiCount];
|
TMap<TString, int> maps[EsiCount];
|
||||||
};
|
};
|
||||||
@ -256,7 +256,7 @@ public:
|
|||||||
inputPrimitive(ElgNone), outputPrimitive(ElgNone),
|
inputPrimitive(ElgNone), outputPrimitive(ElgNone),
|
||||||
pixelCenterInteger(false), originUpperLeft(false),
|
pixelCenterInteger(false), originUpperLeft(false),
|
||||||
vertexSpacing(EvsNone), vertexOrder(EvoNone), interlockOrdering(EioNone), pointMode(false), earlyFragmentTests(false),
|
vertexSpacing(EvsNone), vertexOrder(EvoNone), interlockOrdering(EioNone), pointMode(false), earlyFragmentTests(false),
|
||||||
postDepthCoverage(false), depthLayout(EldNone),
|
postDepthCoverage(false), depthLayout(EldNone),
|
||||||
hlslFunctionality1(false),
|
hlslFunctionality1(false),
|
||||||
blendEquations(0), xfbMode(false), multiStream(false),
|
blendEquations(0), xfbMode(false), multiStream(false),
|
||||||
layoutOverrideCoverage(false),
|
layoutOverrideCoverage(false),
|
||||||
@ -595,7 +595,7 @@ public:
|
|||||||
processes.addProcess("flatten-uniform-arrays");
|
processes.addProcess("flatten-uniform-arrays");
|
||||||
}
|
}
|
||||||
bool getFlattenUniformArrays() const { return flattenUniformArrays; }
|
bool getFlattenUniformArrays() const { return flattenUniformArrays; }
|
||||||
#endif
|
#endif
|
||||||
void setNoStorageFormat(bool b)
|
void setNoStorageFormat(bool b)
|
||||||
{
|
{
|
||||||
useUnknownFormat = b;
|
useUnknownFormat = b;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user