From 22dd13fdb9ac4eb68221715b29e0979718234c1e Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 29 Oct 2009 14:26:38 +0100 Subject: [PATCH] backporting fix of #65 --- Eigen/src/Core/Transpose.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Eigen/src/Core/Transpose.h b/Eigen/src/Core/Transpose.h index 870edfe32..bfc872e8c 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(void) const { return m_matrix.stride(); } inline Scalar& coeffRef(int row, int col)