Skip to content
Snippets Groups Projects
Commit bd306b89 authored by John Kessenich's avatar John Kessenich
Browse files

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
parent fcb4ed05
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment