mirror of
https://github.com/g-truc/glm.git
synced 2025-04-06 14:05:01 +00:00
Fix a warning in func_integer.inl
The lack of parenthesis triggered -Wshift-op-parentheses in Clang 3.2
This commit is contained in:
parent
a4aa39f9bd
commit
0be0a2cb41
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ namespace glm
|
|||
if(x > y)
|
||||
return genUType(detail::highp_int_t(x) - detail::highp_int_t(y));
|
||||
else
|
||||
return genUType(detail::highp_int_t(1) << detail::highp_int_t(32) + detail::highp_int_t(x) - detail::highp_int_t(y));
|
||||
return genUType((detail::highp_int_t(1) << detail::highp_int_t(32)) + detail::highp_int_t(x) - detail::highp_int_t(y));
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
|
|
Loading…
Add table
Reference in a new issue