From 9d18fc82216cd4bfff7969b52501d05f60dc8fd3 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 7 Sep 2019 12:21:47 +0200 Subject: [PATCH] Fixed warning --- glm/detail/type_quat.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glm/detail/type_quat.inl b/glm/detail/type_quat.inl index d3309e12..041793df 100644 --- a/glm/detail/type_quat.inl +++ b/glm/detail/type_quat.inl @@ -96,7 +96,7 @@ namespace detail template GLM_FUNC_QUALIFIER GLM_CONSTEXPR qua::qua(qua const& q) - : w(q.w), x(q.x), y(q.y), z(q.z) + : x(q.x), y(q.y), z(q.z), w(q.w) {} # endif