mirror of
https://github.com/g-truc/glm.git
synced 2024-11-22 17:04:35 +00:00
glm constexpr vec: fix syntax error
This commit is contained in:
parent
b1e08795e3
commit
6d5d26a300
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user