mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-05-07 03:39:04 +08:00
Fixes #83.
This commit is contained in:
parent
553fb31f7e
commit
a87c0a5ed8
@ -187,6 +187,12 @@ class Matrix
|
|||||||
return Base::operator=(other);
|
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 -=;
|
using Base::operator -=;
|
||||||
using Base::operator *=;
|
using Base::operator *=;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user