mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
fix a couple of issues related to recent products
This commit is contained in:
@@ -409,15 +409,8 @@ template<typename Derived> class MatrixBase
|
||||
const typename ProductReturnType<Derived,OtherDerived>::Type
|
||||
operator*(const MatrixBase<OtherDerived> &other) const;
|
||||
|
||||
/** replaces \c *this by \c *this * \a other.
|
||||
*
|
||||
* \returns a reference to \c *this
|
||||
*/
|
||||
template<typename OtherDerived>
|
||||
Derived& operator*=(const MultiplierBase<OtherDerived>& other)
|
||||
{
|
||||
return *this = *this * other.derived();
|
||||
}
|
||||
Derived& operator*=(const MultiplierBase<OtherDerived>& other);
|
||||
|
||||
template<typename DiagonalDerived>
|
||||
const DiagonalProduct<Derived, DiagonalDerived, DiagonalOnTheRight>
|
||||
|
||||
Reference in New Issue
Block a user