From ca8d429854e3db498981d50711860260b7d7337c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 16 Nov 2021 17:07:10 +0100 Subject: [PATCH] Math: doc++ Broken by 3cf4573c0e4a9b45cec4832dd0dace3f442dd6b3 -- forgot to check that docs build. --- src/Magnum/Math/Range.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnum/Math/Range.h b/src/Magnum/Math/Range.h index 08135bffd..86a2a69c6 100644 --- a/src/Magnum/Math/Range.h +++ b/src/Magnum/Math/Range.h @@ -432,7 +432,7 @@ template class Range2D: public Range<2, T> { > constexpr explicit Range2D(const U& other): Range<2, T>{Implementation::RangeConverter<2, T, U>::from(other)} {} - /** @copydoc Range(const Range&) */ + /** @brief Copy constructor */ constexpr /*implicit*/ Range2D(const Range<2, T>& other) noexcept: Range<2, T>(other) {} /** @@ -579,7 +579,7 @@ template class Range3D: public Range<3, T> { */ template::from(std::declval()))> constexpr explicit Range3D(const U& other) noexcept: Range<3, T>{Implementation::RangeConverter<3, T, U>::from(other)} {} - /** @copydoc Range(const Range&) */ + /** @brief Copy constructor */ constexpr /*implicit*/ Range3D(const Range<3, T>& other) noexcept: Range<3, T>(other) {} /**