mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-05-01 00:04:14 +08:00
oops, one more bug fix in homogeneous
This commit is contained in:
parent
9822493aaf
commit
1d1e4884da
@ -246,8 +246,8 @@ struct ei_homogeneous_right_product_impl<Homogeneous<MatrixType,Horizontal>,Rhs>
|
||||
: m_lhs(lhs), m_rhs(rhs)
|
||||
{}
|
||||
|
||||
inline int rows() const { m_lhs.rows(); }
|
||||
inline int cols() const { m_rhs.cols(); }
|
||||
inline int rows() const { return m_lhs.rows(); }
|
||||
inline int cols() const { return m_rhs.cols(); }
|
||||
|
||||
template<typename Dest> void evalTo(Dest& dst) const
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user