Fixed static assert

master
Christophe Riccio ago%!(EXTRA string=14 years)
parent f84a38e4b3
commit c54e4902b9
  1. 2
      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. GLM core features only supports floating-point types, include <glm/gtx/integer.hpp> for integer types support. Others types are not supported.");
GLM_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;
}
};

Loading…
Cancel
Save