From c5f48da31935dd55e14217f570456c11f0b334b6 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 28 May 2016 00:10:18 +0200 Subject: [PATCH] Fixed build with compiler that doesn't support GLM_HAS_UNRESTRICTED_UNIONS --- glm/detail/func_common.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/detail/func_common.inl b/glm/detail/func_common.inl index eb4df984..5037fd5e 100644 --- a/glm/detail/func_common.inl +++ b/glm/detail/func_common.inl @@ -738,6 +738,6 @@ namespace detail } }//namespace glm -#if GLM_ARCH != GLM_ARCH_PURE +#if GLM_ARCH != GLM_ARCH_PURE && GLM_HAS_UNRESTRICTED_UNIONS # include "func_common_simd.inl" #endif