diff --git a/glm/detail/func_common.inl b/glm/detail/func_common.inl index cafaed59..2dd94e1f 100644 --- a/glm/detail/func_common.inl +++ b/glm/detail/func_common.inl @@ -190,12 +190,12 @@ namespace detail # if GLM_ARCH == GLM_ARCH_X86 template class vecType, bool Aligned> - struct compute_sign + struct compute_sign { GLM_FUNC_QUALIFIER static vecType call(vecType const & x) { T const Shift(static_cast(sizeof(T) * 8 - 1)); - vecType const y(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; }