From 9acfc7c4f34ba9f9f8b2d58380732706642dcc25 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 13 Oct 2015 10:55:58 +0200 Subject: [PATCH] remove reference to internal method --- Eigen/src/SparseCore/SparseMatrix.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Eigen/src/SparseCore/SparseMatrix.h b/Eigen/src/SparseCore/SparseMatrix.h index 354ed45e8..c8c31fd83 100644 --- a/Eigen/src/SparseCore/SparseMatrix.h +++ b/Eigen/src/SparseCore/SparseMatrix.h @@ -532,7 +532,7 @@ class SparseMatrix } /** Resizes the matrix to a \a rows x \a cols matrix leaving old values untouched. - * \sa resizeNonZeros(Index), reserve(), setZero() + * \sa reserve(), setZero() */ void conservativeResize(Index rows, Index cols) { @@ -600,7 +600,7 @@ class SparseMatrix * This function does not free the currently allocated memory. To release as much as memory as possible, * call \code mat.data().squeeze(); \endcode after resizing it. * - * \sa resizeNonZeros(Index), reserve(), setZero() + * \sa reserve(), setZero() */ void resize(Index rows, Index cols) { @@ -627,7 +627,6 @@ class SparseMatrix * Resize the nonzero vector to \a size */ void resizeNonZeros(Index size) { - // TODO remove this function m_data.resize(size); }