Browse Source

Fix build

Christophe Riccio 11 years ago
parent
commit
0274cb6e58
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/detail/func_integer.inl

+ 1 - 1
glm/detail/func_integer.inl

@@ -284,7 +284,7 @@ namespace glm
 	template <typename T, precision P, template <typename, precision> class vecType>
 	template <typename T, precision P, template <typename, precision> class vecType>
 	GLM_FUNC_QUALIFIER vecType<int, P> findLSB(vecType<T, P> const & x)
 	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);
 		return detail::functor1<int, T, P, vecType>::call(findLSB, x);
 	}
 	}