Explorar o código

Fixed static_assert errors

Felix Ungman %!s(int64=12) %!d(string=hai) anos
pai
achega
19808e30e2
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  1. 3 3
      glm/core/func_common.inl

+ 3 - 3
glm/core/func_common.inl

@@ -1075,7 +1075,7 @@ namespace detail
 	)
 	{
 		GLM_STATIC_ASSERT(
-			std::numeric_limits<genType>::is_iec559,
+			std::numeric_limits<T>::is_iec559,
 			"'frexp' only accept floating-point inputs");
 
 		return detail::tvec2<T, P>(
@@ -1091,7 +1091,7 @@ namespace detail
 	)
 	{
 		GLM_STATIC_ASSERT(
-			std::numeric_limits<genType>::is_iec559,
+			std::numeric_limits<T>::is_iec559,
 			"'frexp' only accept floating-point inputs");
 
 		return detail::tvec3<T, P>(
@@ -1108,7 +1108,7 @@ namespace detail
 	)
 	{
 		GLM_STATIC_ASSERT(
-			std::numeric_limits<genType>::is_iec559,
+			std::numeric_limits<T>::is_iec559,
 			"'frexp' only accept floating-point inputs");
 
 		return detail::tvec4<T, P>(