diff --git a/glm/core/func_integer.inl b/glm/core/func_integer.inl index 73eceace..0e30aa2a 100644 --- a/glm/core/func_integer.inl +++ b/glm/core/func_integer.inl @@ -390,7 +390,7 @@ namespace glm template GLM_FUNC_QUALIFIER genIUType bitfieldReverse(genIUType const & Value) { - GLM_STATIC_ASSERT(std::numeric_limits::is_integer, "'bitRevert' only accept integer values"); + GLM_STATIC_ASSERT(std::numeric_limits::is_integer, "'bitfieldReverse' only accept integer values"); genIUType Out = 0; std::size_t BitSize = sizeof(genIUType) * 8;