From 6d5d26a300d847db05fe4ecab325a72bad9fb787 Mon Sep 17 00:00:00 2001 From: sharkautarch <128002472+sharkautarch@users.noreply.github.com> Date: Wed, 9 Oct 2024 12:44:16 -0400 Subject: [PATCH] glm constexpr vec: fix syntax error --- glm/detail/simd_constexpr/vec.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } }