Build: Fix #1490, unused variables.
authorJohn Kessenich <cepheus@frii.com>
Sun, 21 Oct 2018 00:30:57 +0000 (18:30 -0600)
committerJohn Kessenich <cepheus@frii.com>
Sun, 21 Oct 2018 00:30:57 +0000 (18:30 -0600)
glslang/MachineIndependent/ParseHelper.cpp [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 82ccc9e..4c2d69f
@@ -1503,14 +1503,14 @@ void TParseContext::memorySemanticsCheck(const TSourceLoc& loc, const TFunction&
 {
     const TIntermSequence* argp = &callNode.getAsAggregate()->getSequence();
 
-    const int gl_SemanticsRelaxed         = 0x0;
+    //const int gl_SemanticsRelaxed         = 0x0;
     const int gl_SemanticsAcquire         = 0x2;
     const int gl_SemanticsRelease         = 0x4;
     const int gl_SemanticsAcquireRelease  = 0x8;
     const int gl_SemanticsMakeAvailable   = 0x2000;
     const int gl_SemanticsMakeVisible     = 0x4000;
 
-    const int gl_StorageSemanticsNone     = 0x0;
+    //const int gl_StorageSemanticsNone     = 0x0;
     const int gl_StorageSemanticsBuffer   = 0x40;
     const int gl_StorageSemanticsShared   = 0x100;
     const int gl_StorageSemanticsImage    = 0x800;