Browse Source

Fixed GCC build broken by #548 PR

Christophe Riccio 9 years ago
parent
commit
6a30bbbe51
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/detail/type_vec.hpp

+ 1 - 1
glm/detail/type_vec.hpp

@@ -21,7 +21,7 @@ namespace detail
 		template <typename T> \
 		struct storage<T, x, true> { \
 			GLM_ALIGNED_STRUCT(x) type { \
-				uint8_t data[x]; \
+				uint8 data[x]; \
 			}; \
 		};