aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/SparseCore/SparseMatrix.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-10-13 10:55:58 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-10-13 10:55:58 +0200
commit9acfc7c4f34ba9f9f8b2d58380732706642dcc25 (patch)
tree15180838f93beeebd485253d92d843205787a2b3 /Eigen/src/SparseCore/SparseMatrix.h
parenta44d91a0b213f513468c5b09221250513d271205 (diff)
remove reference to internal method
Diffstat (limited to 'Eigen/src/SparseCore/SparseMatrix.h')
-rw-r--r--Eigen/src/SparseCore/SparseMatrix.h5
1 files 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);
}