mirror of
https://github.com/g-truc/glm.git
synced 2024-11-22 17:04:35 +00:00
gcc x64 build warning fix around type casting size_t to int
This commit is contained in:
parent
efec5db081
commit
d4717fb57e
@ -362,7 +362,7 @@ namespace detail
|
|||||||
{
|
{
|
||||||
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_integer, "'findMSB' only accept integer values");
|
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
|
}//namespace glm
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user