From bd53b2ed1a82f1bedd4b1cc56a4d7eb6c3c58c65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 24 Sep 2021 18:49:55 +0200 Subject: [PATCH] Math: doc++ --- src/Magnum/Math/Complex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Magnum/Math/Complex.h b/src/Magnum/Math/Complex.h index 3501aa653..fed3febeb 100644 --- a/src/Magnum/Math/Complex.h +++ b/src/Magnum/Math/Complex.h @@ -606,7 +606,7 @@ the same, returns the first argument. @f[ @f] @see @ref Complex::isNormalized(), @ref lerp(const Complex&, const Complex&, T), @ref slerp(const Quaternion&, const Quaternion&, T) - */ +*/ template inline Complex slerp(const Complex& normalizedA, const Complex& normalizedB, T t) { CORRADE_ASSERT(normalizedA.isNormalized() && normalizedB.isNormalized(), "Math::slerp(): complex numbers" << normalizedA << "and" << normalizedB << "are not normalized", {});