From 6a30bbbe51d2b85a58e5fffd34655bc7631120c5 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Wed, 14 Sep 2016 22:01:30 +0200 Subject: [PATCH] Fixed GCC build broken by #548 PR --- glm/detail/type_vec.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/detail/type_vec.hpp b/glm/detail/type_vec.hpp index af8ed14a..7849db63 100644 --- a/glm/detail/type_vec.hpp +++ b/glm/detail/type_vec.hpp @@ -21,7 +21,7 @@ namespace detail template \ struct storage { \ GLM_ALIGNED_STRUCT(x) type { \ - uint8_t data[x]; \ + uint8 data[x]; \ }; \ };