From e2c8e8c86708be0e715e9e95b3b57528f41a2163 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 2 Sep 2013 17:23:31 +0200 Subject: [PATCH] Math: no need to explicitly overload operator=(). It is created automatically. --- src/Math/RectangularMatrix.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Math/RectangularMatrix.h b/src/Math/RectangularMatrix.h index 0b445cd60..b1d700b00 100644 --- a/src/Math/RectangularMatrix.h +++ b/src/Math/RectangularMatrix.h @@ -471,11 +471,6 @@ extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utilit return *reinterpret_cast(data); \ } \ \ - __VA_ARGS__& operator=(const Math::RectangularMatrix& other) { \ - Math::RectangularMatrix::operator=(other); \ - return *this; \ - } \ - \ __VA_ARGS__ operator-() const { \ return Math::RectangularMatrix::operator-(); \ } \