diff --git a/glm/detail/func_common.inl b/glm/detail/func_common.inl index f73bc7e1..2dd94e1f 100644 --- a/glm/detail/func_common.inl +++ b/glm/detail/func_common.inl @@ -195,7 +195,7 @@ namespace detail GLM_FUNC_QUALIFIER static vecType call(vecType const & x) { T const Shift(static_cast(sizeof(T) * 8 - 1)); - vecType const y(L, vecType::type, P>(-x) >> typename make_unsigned::type(Shift)); + vecType const y(vecType::type, P>(-x) >> typename make_unsigned::type(Shift)); return (x >> Shift) | y; }