From 13724cfae64a8b5313d1cabc9a963d2c9dbeda12 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 5 Jan 2020 21:19:37 +0100 Subject: [PATCH] Tentative fix of GLM_FORCE_QUAT_DATA_WXYZ on Clang with tests --- glm/detail/type_quat.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glm/detail/type_quat.hpp b/glm/detail/type_quat.hpp index 4e7e618a..0e60bc33 100644 --- a/glm/detail/type_quat.hpp +++ b/glm/detail/type_quat.hpp @@ -52,9 +52,9 @@ namespace glm }; # else # ifdef GLM_FORCE_QUAT_DATA_WXYZ - T x, y, z, w; -# else T w, x, y, z; +# else + T x, y, z, w; # endif # endif