diff --git a/src/Magnum/Math/Functions.h b/src/Magnum/Math/Functions.h index 4503d60c8..db44f62e5 100644 --- a/src/Magnum/Math/Functions.h +++ b/src/Magnum/Math/Functions.h @@ -709,6 +709,12 @@ template inline Vector sqrtInverted(const Ve return Vector(T(1))/Math::sqrt(a); } +/* Since 1.8.17, the original short-hand group closing doesn't work anymore. + FFS. */ +/** + * @} + */ + /** @brief Reflect a vector @m_since{2020,06} @@ -761,12 +767,6 @@ template inline Vector refract(const Vector< return eta*vector - (eta*dot + std::sqrt(k))*normal; } -/* Since 1.8.17, the original short-hand group closing doesn't work anymore. - FFS. */ -/** - * @} - */ - }} #endif