aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Geometry
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-08-06 16:56:10 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-08-06 16:56:10 +0200
commit1d1e4884daee5fe77c1232a1d211dac7bbb7391f (patch)
tree37d6d873e85839a11d977678e5b21795330ba095 /Eigen/src/Geometry
parent9822493aafb8cc798e95aa9bccf44ba100a2ee37 (diff)
oops, one more bug fix in homogeneous
Diffstat (limited to 'Eigen/src/Geometry')
-rw-r--r--Eigen/src/Geometry/Homogeneous.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Geometry/Homogeneous.h b/Eigen/src/Geometry/Homogeneous.h
index 0cf626e3f..2de99b5de 100644
--- a/Eigen/src/Geometry/Homogeneous.h
+++ b/Eigen/src/Geometry/Homogeneous.h
@@ -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
{