diff --git a/src/Magnum/Math/Range.h b/src/Magnum/Math/Range.h index 07098b427..2ad8c2df0 100644 --- a/src/Magnum/Math/Range.h +++ b/src/Magnum/Math/Range.h @@ -146,7 +146,7 @@ template class Range { * * @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*/ Range(const std::pair& minmax) noexcept: _min{minmax.first}, _max{minmax.second} {}