Browse Source

Tentative fix of GLM_FORCE_QUAT_DATA_WXYZ on Clang with tests

Christophe Riccio 6 years ago
parent
commit
13724cfae6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      glm/detail/type_quat.hpp

+ 2 - 2
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