Sfoglia il codice sorgente

Updated error message for unsuported log2 types

Christophe Riccio 14 anni fa
parent
commit
f84a38e4b3
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      glm/core/func_exponential.inl

+ 1 - 1
glm/core/func_exponential.inl

@@ -232,7 +232,7 @@ namespace detail
 		template <typename T>
 		T operator() (T const & Value) const
 		{
-			static_assert(0, "'log2' parameter has an invalid template parameter type");
+			static_assert(0, "'log2' parameter has an invalid template parameter type. GLM core features only supports floating-point types, include <glm/gtx/integer.hpp> for integer types support. Others types are not supported.");
 			return Value;
 		}
 	};