From 3f580e240e2a3018c7e040e4c4cfc9541c84166d Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 30 Oct 2008 00:59:37 +0000 Subject: [PATCH] add Eigen namespace in front of Transpose (I needed that to add a Transpose function, sorry for this little inconvenience) --- Eigen/src/Core/MatrixBase.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Eigen/src/Core/MatrixBase.h b/Eigen/src/Core/MatrixBase.h index a9fe26555..8329ec148 100644 --- a/Eigen/src/Core/MatrixBase.h +++ b/Eigen/src/Core/MatrixBase.h @@ -190,7 +190,7 @@ template class MatrixBase /** \internal the return type of MatrixBase::real() */ typedef CwiseUnaryOp, Derived> RealReturnType; /** \internal the return type of MatrixBase::adjoint() */ - typedef Transpose::type> > + typedef Eigen::Transpose::type> > AdjointReturnType; /** \internal the return type of MatrixBase::eigenvalues() */ typedef Matrix::Scalar>::Real, ei_traits::ColsAtCompileTime, 1> EigenvaluesReturnType; @@ -335,8 +335,8 @@ template class MatrixBase const EvalType normalized() const; void normalize(); - Transpose transpose(); - const Transpose transpose() const; + Eigen::Transpose transpose(); + const Eigen::Transpose transpose() const; void transposeInPlace(); const AdjointReturnType adjoint() const;