Commit bd306b89 by John Kessenich

fix g++ complaint and update binaries

parent fcb4ed05
......@@ -2,7 +2,7 @@
TARGETDIR=localResults
BASEDIR=baseResults
EXE=./glslangValidator.exe
EXE=./glslangValidator
mkdir -p localResults
#
......
......@@ -142,11 +142,11 @@ public:
void setInput(TInputScanner& input, bool versionWillBeError);
void TPpContext::pushInput(tInput* in)
void pushInput(tInput* in)
{
inputStack.push_back(in);
}
void TPpContext::popInput()
void popInput()
{
delete inputStack.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