diff --git a/glm/detail/simd_constexpr/vec.hpp b/glm/detail/simd_constexpr/vec.hpp index 131bb8f3..aaab636d 100644 --- a/glm/detail/simd_constexpr/vec.hpp +++ b/glm/detail/simd_constexpr/vec.hpp @@ -489,7 +489,7 @@ namespace glm ++*this; return Result; } else { - ++*this + ++*this; return Result; } } @@ -502,7 +502,7 @@ namespace glm --*this; return Result; } else { - --*this + --*this; return Result; } }