aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Kessenich <cepheus@frii.com>2016-11-27 23:00:14 -0700
committerJohn Kessenich <cepheus@frii.com>2016-11-27 23:00:14 -0700
commit8ce6e2ba4907c5d062241947bb0300034ea23985 (patch)
treee52f1695cd011b8b295ff3f0f42977c22ee6413a
parentf97f2ce603ae190aafd2d1335e5a417e7bd2d2fe (diff)
downloadglslang-8ce6e2ba4907c5d062241947bb0300034ea23985.tar.gz
Fix non-Windows build error.
-rw-r--r--glslang/Include/revision.h2
-rwxr-xr-xhlsl/hlslParseHelper.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/glslang/Include/revision.h b/glslang/Include/revision.h
index 480953e0..5445009c 100644
--- a/glslang/Include/revision.h
+++ b/glslang/Include/revision.h
@@ -2,5 +2,5 @@
// For the version, it uses the latest git tag followed by the number of commits.
// For the date, it uses the current date (when then script is run).
-#define GLSLANG_REVISION "Overload400-PrecQual.1666"
+#define GLSLANG_REVISION "Overload400-PrecQual.1667"
#define GLSLANG_DATE "27-Nov-2016"
diff --git a/hlsl/hlslParseHelper.h b/hlsl/hlslParseHelper.h
index 02e69814..246c7c49 100755
--- a/hlsl/hlslParseHelper.h
+++ b/hlsl/hlslParseHelper.h
@@ -172,7 +172,7 @@ protected:
void declareArray(const TSourceLoc&, TString& identifier, const TType&, TSymbol*&, bool track);
TIntermNode* executeInitializer(const TSourceLoc&, TIntermTyped* initializer, TVariable* variable);
TIntermTyped* convertInitializerList(const TSourceLoc&, const TType&, TIntermTyped* initializer);
- bool HlslParseContext::isZeroConstructor(const TIntermNode*);
+ bool isZeroConstructor(const TIntermNode*);
TOperator mapAtomicOp(const TSourceLoc& loc, TOperator op, bool isImage);
// Return true if this node requires L-value conversion (e.g, to an imageStore).