Browse Source

Fixed C++ 98 build

Christophe 6 years ago
parent
commit
8bf26a2bb3
1 changed files with 6 additions and 0 deletions
  1. 6 0
      glm/detail/setup.hpp

+ 6 - 0
glm/detail/setup.hpp

@@ -710,6 +710,12 @@ namespace detail
 		typedef unsigned char type;
 	};
 
+	template<>
+	struct make_unsigned<signed char>
+	{
+		typedef unsigned char type;
+	};
+
 	template<>
 	struct make_unsigned<short>
 	{