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} {}