From e513cc75c4661d490ccb425068740458f3483961 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 29 Oct 2009 14:24:09 +0100 Subject: [PATCH] oops I forgot to include that file in the previous commit (fixing #65) --- Eigen/src/Core/Transpose.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Eigen/src/Core/Transpose.h b/Eigen/src/Core/Transpose.h index 8527edc2a..990aa3807 100644 --- a/Eigen/src/Core/Transpose.h +++ b/Eigen/src/Core/Transpose.h @@ -69,7 +69,6 @@ template class Transpose inline int rows() const { return m_matrix.cols(); } inline int cols() const { return m_matrix.rows(); } - inline int nonZeros() const { return m_matrix.nonZeros(); } inline int stride() const { return m_matrix.stride(); } inline Scalar* data() { return m_matrix.data(); } inline const Scalar* data() const { return m_matrix.data(); } @@ -354,5 +353,5 @@ lazyAssign(const CwiseBinaryOp,DerivedA,CwiseUnaryOp,DerivedA,CwiseUnaryOp, NestByValue > > > >& >(other)); } #endif - + #endif // EIGEN_TRANSPOSE_H