From 09d16c3ec1663f42865209049075fc663b5cfd01 Mon Sep 17 00:00:00 2001 From: Felix Kaaman Date: Sat, 25 Jul 2015 16:31:50 +0200 Subject: [PATCH] Fix missing const qualifier on TUnorderedMap template type --- glslang/Include/Common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glslang/Include/Common.h b/glslang/Include/Common.h index 88f23400..075169e1 100644 --- a/glslang/Include/Common.h +++ b/glslang/Include/Common.h @@ -156,7 +156,7 @@ class TMap : public std::map > > { }; template , class PRED = std::equal_to > -class TUnorderedMap : public std::unordered_map > > { +class TUnorderedMap : public std::unordered_map > > { }; //