fix g++ complaint and update binaries

git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@24627 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
John Kessenich 2013-12-30 20:40:03 +00:00
parent fcb4ed054c
commit bd306b89a4
3 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -2,7 +2,7 @@
TARGETDIR=localResults
BASEDIR=baseResults
EXE=./glslangValidator.exe
EXE=./glslangValidator
mkdir -p localResults
#

View File

@ -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();