From 8019b285bdda1b31809a4a6f9326014d02545aaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 26 Sep 2020 21:13:48 +0200 Subject: [PATCH] Math: put reflect() and refract() outside of irrelevant group. Got overlooked when merging this contribution. --- src/Magnum/Math/Functions.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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