This commit is contained in:
Hauke Heibel 2010-01-12 17:13:46 +01:00
parent 553fb31f7e
commit a87c0a5ed8

View File

@ -187,6 +187,12 @@ class Matrix
return Base::operator=(other);
}
template<typename OtherDerived>
EIGEN_STRONG_INLINE Matrix& operator=(const ReturnByValue<OtherDerived>& func)
{
return Base::operator=(func);
}
using Base::operator +=;
using Base::operator -=;
using Base::operator *=;