From a69f567ea9878790dfc66580fa4be3edf65fd299 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 2 May 2015 12:55:25 +0200 Subject: [PATCH] Math: fix redundant and cyclic documentation references. --- src/Magnum/Math/Angle.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Magnum/Math/Angle.h b/src/Magnum/Math/Angle.h index e3d700ffe..7d4355fa7 100644 --- a/src/Magnum/Math/Angle.h +++ b/src/Magnum/Math/Angle.h @@ -208,8 +208,8 @@ template class Rad: public Unit { /** @relatesalso Rad @brief Double-precision radian value literal -See @link operator""_rad() @endlink for more information. -@see @link operator""_radf() @endlink, @link operator""_deg() @endlink +See @link operator""_deg() @endlink for more information. +@see @link operator""_radf() @endlink @requires_gl Only single-precision types are available in OpenGL ES. */ constexpr Rad operator "" _rad(long double value) { return Rad(value); } @@ -219,7 +219,7 @@ constexpr Rad operator "" _rad(long double value) { return Rad(v @brief Single-precision radian value literal See @link operator""_degf() @endlink for more information. -@see @link operator""_rad() @endlink, @link operator""_degf() @endlink +@see @link operator""_rad() @endlink */ constexpr Rad operator "" _radf(long double value) { return Rad(value); }