From 1d1e4884daee5fe77c1232a1d211dac7bbb7391f Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 6 Aug 2009 16:56:10 +0200 Subject: [PATCH] oops, one more bug fix in homogeneous --- Eigen/src/Geometry/Homogeneous.h | 4 ++-- 1 file 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,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 void evalTo(Dest& dst) const {