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;