From 40432c84b9f41be1448f6eaad7c856dd13c94518 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Wed, 1 Apr 2009 14:47:56 +0000 Subject: [PATCH] CwiseUnaryOp -> SparseCwiseUnaryOp --- Eigen/src/Sparse/SparseMatrixBase.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Eigen/src/Sparse/SparseMatrixBase.h b/Eigen/src/Sparse/SparseMatrixBase.h index 468bc9e22..f20841ce1 100644 --- a/Eigen/src/Sparse/SparseMatrixBase.h +++ b/Eigen/src/Sparse/SparseMatrixBase.h @@ -84,9 +84,9 @@ template class SparseMatrixBase const Derived& >::ret ConjugateReturnType; /** \internal the return type of MatrixBase::real() */ - typedef CwiseUnaryOp, Derived> RealReturnType; + typedef SparseCwiseUnaryOp, Derived> RealReturnType; /** \internal the return type of MatrixBase::imag() */ - typedef CwiseUnaryOp, Derived> ImagReturnType; + typedef SparseCwiseUnaryOp, Derived> ImagReturnType; /** \internal the return type of MatrixBase::adjoint() */ typedef SparseTranspose::type> /*>*/ AdjointReturnType;