mirror of
https://github.com/g-truc/glm.git
synced 2025-04-14 01:00:37 +00:00
Fix build
This commit is contained in:
parent
3344c8e9a0
commit
0274cb6e58
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ namespace glm
|
|||
template <typename T, precision P, template <typename, precision> class vecType>
|
||||
GLM_FUNC_QUALIFIER vecType<int, P> findLSB(vecType<T, P> const & x)
|
||||
{
|
||||
GLM_STATIC_ASSERT(std::numeric_limits<genIUType>::is_integer, "'findLSB' only accept integer values");
|
||||
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_integer, "'findLSB' only accept integer values");
|
||||
|
||||
return detail::functor1<int, T, P, vecType>::call(findLSB, x);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue