From ad1ae4506675ce5ac958fa946b5a2a4bcf49bcdb Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 17 Jul 2016 03:18:19 +0200 Subject: [PATCH] More use of GLM_HAS_ALIGNED_TYPE --- glm/detail/type_vec4.inl | 2 +- glm/gtc/quaternion.inl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/glm/detail/type_vec4.inl b/glm/detail/type_vec4.inl index 00320835..d891e038 100644 --- a/glm/detail/type_vec4.inl +++ b/glm/detail/type_vec4.inl @@ -970,6 +970,6 @@ namespace detail } }//namespace glm -#if GLM_ARCH != GLM_ARCH_PURE && GLM_HAS_UNRESTRICTED_UNIONS +#if GLM_ARCH != GLM_ARCH_PURE && GLM_HAS_ALIGNED_TYPE # include "type_vec4_simd.inl" #endif diff --git a/glm/gtc/quaternion.inl b/glm/gtc/quaternion.inl index 60cae12f..ff610980 100644 --- a/glm/gtc/quaternion.inl +++ b/glm/gtc/quaternion.inl @@ -795,7 +795,7 @@ namespace detail } }//namespace glm -#if GLM_ARCH != GLM_ARCH_PURE && GLM_HAS_UNRESTRICTED_UNIONS +#if GLM_ARCH != GLM_ARCH_PURE && GLM_HAS_ALIGNED_TYPE # include "quaternion_simd.inl" #endif