Browse Source

Math: no need to explicitly overload operator=().

It is created automatically.
pull/23/head
Vladimír Vondruš 13 years ago
parent
commit
e2c8e8c867
  1. 5
      src/Math/RectangularMatrix.h

5
src/Math/RectangularMatrix.h

@ -471,11 +471,6 @@ extern template Corrade::Utility::Debug MAGNUM_EXPORT operator<<(Corrade::Utilit
return *reinterpret_cast<const __VA_ARGS__*>(data); \
} \
\
__VA_ARGS__& operator=(const Math::RectangularMatrix<cols, rows, T>& other) { \
Math::RectangularMatrix<cols, rows, T>::operator=(other); \
return *this; \
} \
\
__VA_ARGS__ operator-() const { \
return Math::RectangularMatrix<cols, rows, T>::operator-(); \
} \

Loading…
Cancel
Save