Browse Source

Fixed build errors

Christophe Riccio 7 years ago
parent
commit
6c436efacd
1 changed files with 6 additions and 6 deletions
  1. 6 6
      glm/detail/qualifier.hpp

+ 6 - 6
glm/detail/qualifier.hpp

@@ -115,13 +115,13 @@ namespace detail
 	};
 	};
 
 
 	template<>
 	template<>
-	struct storage<4, int32, true>
+	struct storage<4, int, true>
 	{
 	{
 		typedef glm_i32vec4 type;
 		typedef glm_i32vec4 type;
 	};
 	};
 
 
 	template<>
 	template<>
-	struct storage<4, uint32, true>
+	struct storage<4, unsigned int, true>
 	{
 	{
 		typedef glm_u32vec4 type;
 		typedef glm_u32vec4 type;
 	};
 	};
@@ -133,13 +133,13 @@ namespace detail
 	};
 	};
 
 
 	template<>
 	template<>
-	struct storage<2, int64, true>
+	struct storage<2, detail::int64, true>
 	{
 	{
 		typedef glm_i64vec2 type;
 		typedef glm_i64vec2 type;
 	};
 	};
 
 
 	template<>
 	template<>
-	struct storage<2, uint64, true>
+	struct storage<2, detail::uint64, true>
 	{
 	{
 		typedef glm_u64vec2 type;
 		typedef glm_u64vec2 type;
 	};
 	};
@@ -155,13 +155,13 @@ namespace detail
 
 
 #	if (GLM_ARCH & GLM_ARCH_AVX2_BIT)
 #	if (GLM_ARCH & GLM_ARCH_AVX2_BIT)
 	template<>
 	template<>
-	struct storage<4, int64, true>
+	struct storage<4, detail::int64, true>
 	{
 	{
 		typedef glm_i64vec4 type;
 		typedef glm_i64vec4 type;
 	};
 	};
 
 
 	template<>
 	template<>
-	struct storage<4, uint64, true>
+	struct storage<4, detail::uint64, true>
 	{
 	{
 		typedef glm_u64vec4 type;
 		typedef glm_u64vec4 type;
 	};
 	};