From 87bed133e775a891235d20938cc6778caed9e1a0 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 7 Sep 2019 12:15:00 +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 9d8344b6..d3309e12 100644 --- a/glm/detail/type_quat.inl +++ b/glm/detail/type_quat.inl @@ -90,7 +90,7 @@ namespace detail template GLM_FUNC_QUALIFIER GLM_CONSTEXPR qua::qua() # if GLM_CONFIG_CTOR_INIT != GLM_CTOR_INIT_DISABLE - : w(1), x(0), y(0), z(0) + : x(0), y(0), z(0), w(1) # endif {}