This commit is contained in:
Gael Guennebaud 2009-07-29 09:26:20 +02:00
parent 864171df5c
commit 62d9b9b7b5
3 changed files with 4 additions and 4 deletions

View File

@ -229,7 +229,7 @@ struct ei_selfadjoint_product_returntype<Lhs,LhsMode,false,Rhs,0,true>
{}
inline int rows() const { return m_lhs.rows(); }
inline int cols() const { return m_lhs.cols(); }
inline int cols() const { return m_rhs.cols(); }
template<typename Dest> inline void _addTo(Dest& dst) const
{ evalTo(dst,1); }
@ -282,7 +282,7 @@ struct ei_selfadjoint_product_returntype<Lhs,LhsMode,false,Rhs,RhsMode,false>
{}
inline int rows() const { return m_lhs.rows(); }
inline int cols() const { return m_lhs.cols(); }
inline int cols() const { return m_rhs.cols(); }
typedef typename Lhs::Scalar Scalar;

View File

@ -331,7 +331,7 @@ struct ei_triangular_product_returntype<Mode,LhsIsTriangular,Lhs,false,Rhs,false
{}
inline int rows() const { return m_lhs.rows(); }
inline int cols() const { return m_lhs.cols(); }
inline int cols() const { return m_rhs.cols(); }
typedef typename Lhs::Scalar Scalar;

View File

@ -142,7 +142,7 @@ struct ei_triangular_product_returntype<Mode,true,Lhs,false,Rhs,true>
{}
inline int rows() const { return m_lhs.rows(); }
inline int cols() const { return m_lhs.cols(); }
inline int cols() const { return m_rhs.cols(); }
template<typename Dest> inline void _addTo(Dest& dst) const
{ evalTo(dst,1); }