Skip to content

Commit

Permalink
Tentative fix of GLM_FORCE_QUAT_DATA_WXYZ on Clang with tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Groovounet committed Jan 5, 2020
1 parent 028b303 commit 13724cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions glm/detail/type_quat.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 13724cf

Please sign in to comment.