From d0e746e292e7972374664663f928aa51388f9c4e Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 28 May 2016 17:55:24 +0200 Subject: [PATCH] Fixed SIMD code path selection --- glm/detail/type_vec4.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/detail/type_vec4.hpp b/glm/detail/type_vec4.hpp index e80851f4..e7209b32 100644 --- a/glm/detail/type_vec4.hpp +++ b/glm/detail/type_vec4.hpp @@ -29,7 +29,7 @@ namespace detail typedef T type[4]; }; -# if (GLM_ARCH & GLM_ARCH_SSE2) +# if (GLM_ARCH & GLM_ARCH_SSE2_FLAG) template <> struct simd_data {