From 6c436efacd65d24313fffa370b4413a51ac35b17 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Mon, 13 Aug 2018 21:03:53 +0200 Subject: [PATCH] Fixed build errors --- glm/detail/qualifier.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/glm/detail/qualifier.hpp b/glm/detail/qualifier.hpp index db1111b7..115817f1 100644 --- a/glm/detail/qualifier.hpp +++ b/glm/detail/qualifier.hpp @@ -115,13 +115,13 @@ namespace detail }; template<> - struct storage<4, int32, true> + struct storage<4, int, true> { typedef glm_i32vec4 type; }; template<> - struct storage<4, uint32, true> + struct storage<4, unsigned int, true> { typedef glm_u32vec4 type; }; @@ -133,13 +133,13 @@ namespace detail }; template<> - struct storage<2, int64, true> + struct storage<2, detail::int64, true> { typedef glm_i64vec2 type; }; template<> - struct storage<2, uint64, true> + struct storage<2, detail::uint64, true> { typedef glm_u64vec2 type; }; @@ -155,13 +155,13 @@ namespace detail # if (GLM_ARCH & GLM_ARCH_AVX2_BIT) template<> - struct storage<4, int64, true> + struct storage<4, detail::int64, true> { typedef glm_i64vec4 type; }; template<> - struct storage<4, uint64, true> + struct storage<4, detail::uint64, true> { typedef glm_u64vec4 type; };