Build: Fix Linux for older compiler: Use TMap instead of TUndorderedMap.

This commit is contained in:
John Kessenich 2017-02-03 11:21:24 -07:00
parent ec712ebea1
commit fbb58a4e0b
2 changed files with 4 additions and 4 deletions

View File

@ -1221,7 +1221,7 @@ public:
// Make complete copy of the whole type graph rooted at 'copyOf'.
void deepCopy(const TType& copyOf)
{
TUnorderedMap<TTypeList*,TTypeList*> copied; // to enable copying a type graph as a graph, not a tree
TMap<TTypeList*,TTypeList*> copied; // to enable copying a type graph as a graph, not a tree
deepCopy(copyOf, copied);
}
@ -1855,7 +1855,7 @@ protected:
// Recursively copy a type graph, while preserving the graph-like
// quality. That is, don't make more than one copy of a structure that
// gets reused multiple times in the type graph.
void deepCopy(const TType& copyOf, TUnorderedMap<TTypeList*,TTypeList*>& copiedMap)
void deepCopy(const TType& copyOf, TMap<TTypeList*,TTypeList*>& copiedMap)
{
shallowCopy(copyOf);

View File

@ -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.1783"
#define GLSLANG_DATE "01-Feb-2017"
#define GLSLANG_REVISION "Overload400-PrecQual.1786"
#define GLSLANG_DATE "03-Feb-2017"