aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-10-30 00:59:37 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-10-30 00:59:37 +0000
commit3f580e240e2a3018c7e040e4c4cfc9541c84166d (patch)
tree63efa536e74c85d5110b038311d6d5e824380cab
parentebe14aae7d39fb16d173d8db68e0ea439c4f87fc (diff)
add Eigen namespace in front of Transpose (I needed that to add a Transpose function, sorry for this little inconvenience)
-rw-r--r--Eigen/src/Core/MatrixBase.h6
1 files 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<typename Derived> class MatrixBase
/** \internal the return type of MatrixBase::real() */
typedef CwiseUnaryOp<ei_scalar_real_op<Scalar>, Derived> RealReturnType;
/** \internal the return type of MatrixBase::adjoint() */
- typedef Transpose<NestByValue<typename ei_cleantype<ConjugateReturnType>::type> >
+ typedef Eigen::Transpose<NestByValue<typename ei_cleantype<ConjugateReturnType>::type> >
AdjointReturnType;
/** \internal the return type of MatrixBase::eigenvalues() */
typedef Matrix<typename NumTraits<typename ei_traits<Derived>::Scalar>::Real, ei_traits<Derived>::ColsAtCompileTime, 1> EigenvaluesReturnType;
@@ -335,8 +335,8 @@ template<typename Derived> class MatrixBase
const EvalType normalized() const;
void normalize();
- Transpose<Derived> transpose();
- const Transpose<Derived> transpose() const;
+ Eigen::Transpose<Derived> transpose();
+ const Eigen::Transpose<Derived> transpose() const;
void transposeInPlace();
const AdjointReturnType adjoint() const;