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) {} /**