diff --git a/Install/Linux/libglslang.so b/Install/Linux/libglslang.so index be32ae3c..cb266d5b 100755 Binary files a/Install/Linux/libglslang.so and b/Install/Linux/libglslang.so differ diff --git a/Test/runtests b/Test/runtests index ab800e7d..58269510 100755 --- a/Test/runtests +++ b/Test/runtests @@ -2,7 +2,7 @@ TARGETDIR=localResults BASEDIR=baseResults -EXE=./glslangValidator.exe +EXE=./glslangValidator mkdir -p localResults # diff --git a/glslang/MachineIndependent/preprocessor/PpContext.h b/glslang/MachineIndependent/preprocessor/PpContext.h index 0c91ce65..213bdc78 100644 --- a/glslang/MachineIndependent/preprocessor/PpContext.h +++ b/glslang/MachineIndependent/preprocessor/PpContext.h @@ -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();