From c4a4823f5d88e1536fec3c80952c13e799133356 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 17 Sep 2022 21:49:06 +0200 Subject: [PATCH] Math: TODO++ --- src/Magnum/Math/Range.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Magnum/Math/Range.h b/src/Magnum/Math/Range.h index 2bccb0281..18427f9cd 100644 --- a/src/Magnum/Math/Range.h +++ b/src/Magnum/Math/Range.h @@ -152,7 +152,7 @@ template class Range { _min{minmax.first}, _max{minmax.second} {} /** @overload */ - /** @todo std::pair constructors are not constexpr in C++11, make it so in C++14 */ + /** @todo std::pair constructors are not constexpr in C++11, make it so in C++14... actually, replace with Pair */ #ifndef DOXYGEN_GENERATING_OUTPUT template::type> #endif @@ -420,7 +420,7 @@ template class Range2D: public Range<2, T> { * * @snippet MagnumMath.cpp Range-construct-minmax2D * - * @todo std::pair constructors are not constexpr in C++11, make it so in C++14 + * @todo std::pair constructors are not constexpr in C++11, make it so in C++14... actually, replace with Pair */ /*implicit*/ Range2D(const std::pair, Vector2>& minmax) noexcept: Range<2, T>{minmax.first, minmax.second} {} @@ -574,7 +574,7 @@ template class Range3D: public Range<3, T> { * * @snippet MagnumMath.cpp Range-construct-minmax3D * - * @todo std::pair constructors are not constexpr in C++11, make it so in C++14 + * @todo std::pair constructors are not constexpr in C++11, make it so in C++14... actually, replace with Pair */ /*implicit*/ Range3D(const std::pair, Vector3>& minmax) noexcept: Range<3, T>{minmax.first, minmax.second} {}