glm constexpr vec: fix syntax error

This commit is contained in:
sharkautarch 2024-10-09 12:44:16 -04:00
parent b1e08795e3
commit 6d5d26a300
No known key found for this signature in database
GPG Key ID: F270CA9462164405

View File

@ -489,7 +489,7 @@ namespace glm
++*this; ++*this;
return Result; return Result;
} else { } else {
++*this ++*this;
return Result; return Result;
} }
} }
@ -502,7 +502,7 @@ namespace glm
--*this; --*this;
return Result; return Result;
} else { } else {
--*this --*this;
return Result; return Result;
} }
} }