diff --git a/src/Magnum/Math/Angle.h b/src/Magnum/Math/Angle.h index 5343e8fbd..def2236e5 100644 --- a/src/Magnum/Math/Angle.h +++ b/src/Magnum/Math/Angle.h @@ -157,7 +157,6 @@ Double cosine = Math::cos(1.047_rad); // cosine = 0.5 @endcode @see @link operator""_degf() @endlink, @link operator""_rad() @endlink @requires_gl Only single-precision types are available in OpenGL ES. -@todoc Remove workarounds (2) when Doxygen can handle operator"" */ constexpr Deg operator "" _deg(long double value) { return Deg(value); } #endif @@ -171,7 +170,6 @@ Float tangent = Math::tan(60.0_degf); // tangent = 1.732f Float tangent = Math::tan(1.047_radf); // tangent = 1.732f @endcode @see @link operator""_deg() @endlink, @link operator""_radf() @endlink -@todoc Remove workarounds (2) when Doxygen can handle operator"" */ constexpr Deg operator "" _degf(long double value) { return Deg(value); } @@ -213,7 +211,6 @@ template class Rad: public Unit { See @link operator""_rad() @endlink for more information. @see @link operator""_radf() @endlink, @link operator""_deg() @endlink @requires_gl Only single-precision types are available in OpenGL ES. -@todoc Remove workarounds (3) when Doxygen can handle operator"" */ constexpr Rad operator "" _rad(long double value) { return Rad(value); } #endif @@ -223,7 +220,6 @@ constexpr Rad operator "" _rad(long double value) { return Rad(v See @link operator""_degf() @endlink for more information. @see @link operator""_rad() @endlink, @link operator""_degf() @endlink -@todoc Remove workarounds (3) when Doxygen can handle operator"" */ constexpr Rad operator "" _radf(long double value) { return Rad(value); }