From 163b57c319782c62e85ca229098de524932ff26f Mon Sep 17 00:00:00 2001 From: Hinara <1793523+Hinara@users.noreply.github.com> Date: Mon, 29 Jul 2019 17:21:44 +0200 Subject: [PATCH] Fix compilation under xcode 6.4 --- glm/detail/type_quat.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/detail/type_quat.hpp b/glm/detail/type_quat.hpp index b8de4b28..ae70e091 100644 --- a/glm/detail/type_quat.hpp +++ b/glm/detail/type_quat.hpp @@ -47,7 +47,7 @@ namespace glm typename detail::storage<4, T, detail::is_aligned::value>::type data; }; # else - T x, y, z, w; + T w, x, y, z; # endif # if GLM_SILENT_WARNINGS == GLM_ENABLE