Commit bd306b89 by John Kessenich

fix g++ complaint and update binaries

parent fcb4ed05
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
TARGETDIR=localResults TARGETDIR=localResults
BASEDIR=baseResults BASEDIR=baseResults
EXE=./glslangValidator.exe EXE=./glslangValidator
mkdir -p localResults mkdir -p localResults
# #
......
...@@ -142,11 +142,11 @@ public: ...@@ -142,11 +142,11 @@ public:
void setInput(TInputScanner& input, bool versionWillBeError); void setInput(TInputScanner& input, bool versionWillBeError);
void TPpContext::pushInput(tInput* in) void pushInput(tInput* in)
{ {
inputStack.push_back(in); inputStack.push_back(in);
} }
void TPpContext::popInput() void popInput()
{ {
delete inputStack.back(); delete inputStack.back();
inputStack.pop_back(); inputStack.pop_back();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment