mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 05:25:02 +00:00
Merge pull request #1150 from fsmoke/gcc-warnings-fix
gcc x64 build warning fix around type casting size_t to int #1150
This commit is contained in:
commit
684822982b
1 changed files with 1 additions and 1 deletions
|
@ -362,7 +362,7 @@ namespace detail
|
|||
{
|
||||
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_integer, "'findMSB' only accept integer values");
|
||||
|
||||
return detail::compute_findMSB_vec<L, T, Q, sizeof(T) * 8>::call(v);
|
||||
return detail::compute_findMSB_vec<L, T, Q, static_cast<int>(sizeof(T) * 8)>::call(v);
|
||||
}
|
||||
}//namespace glm
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue