aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Geometry/Homogeneous.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-02-19 23:30:41 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-02-19 23:30:41 +0100
commit1b7e12847d099ab6715c3ee99f068c9fd19858fc (patch)
treef07f6e3966772ff75152d3bc830fa0488f54e532 /Eigen/src/Geometry/Homogeneous.h
parent0f4dd15dfc6e18e88cc55f561cf4ee2a772ab350 (diff)
Fix some calls to result_of on binary functors as unary ones.
Diffstat (limited to 'Eigen/src/Geometry/Homogeneous.h')
-rw-r--r--Eigen/src/Geometry/Homogeneous.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Geometry/Homogeneous.h b/Eigen/src/Geometry/Homogeneous.h
index f16451656..756ecf9dc 100644
--- a/Eigen/src/Geometry/Homogeneous.h
+++ b/Eigen/src/Geometry/Homogeneous.h
@@ -102,7 +102,7 @@ template<typename MatrixType,int _Direction> class Homogeneous
}
template<typename Func>
- EIGEN_STRONG_INLINE typename internal::result_of<Func(Scalar)>::type
+ EIGEN_STRONG_INLINE typename internal::result_of<Func(Scalar,Scalar)>::type
redux(const Func& func) const
{
return func(m_matrix.redux(func), Scalar(1));