From abda09298a3730a7da8722e2e66001a3042d9393 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 24 Jul 2021 18:52:53 +0200 Subject: [PATCH] Math: haha std::pair you silly stupid thing. --- src/Magnum/Math/Range.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} {}