Removed redundant assignment operators.

This commit is contained in:
Hauke Heibel
2009-08-31 13:47:32 +02:00
parent 9005eb0788
commit 99bfab6dcf
2 changed files with 1 additions and 10 deletions

View File

@@ -251,11 +251,7 @@ using Base::operator =; \
using Base::operator +=; \
using Base::operator -=; \
using Base::operator *=; \
using Base::operator /=; \
EIGEN_STRONG_INLINE Derived& operator=(const Derived& other) \
{ \
return Base::operator=(other); \
}
using Base::operator /=;
#define _EIGEN_GENERIC_PUBLIC_INTERFACE(Derived, BaseClass) \
typedef BaseClass Base; \