mirror of
https://github.com/g-truc/glm.git
synced 2024-11-22 08:54: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;
|
++*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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user