From 69966e90e12c0c9eef4f370945e23fcc943ee8a6 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sun, 4 Dec 2011 21:15:46 +0100 Subject: [PATCH] fix bug #221: remove the dense to SparseVector conversion ctor. --- Eigen/src/SparseCore/SparseVector.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Eigen/src/SparseCore/SparseVector.h b/Eigen/src/SparseCore/SparseVector.h index 53647af99..741768109 100644 --- a/Eigen/src/SparseCore/SparseVector.h +++ b/Eigen/src/SparseCore/SparseVector.h @@ -205,13 +205,6 @@ class SparseVector inline SparseVector(Index rows, Index cols) : m_size(0) { resize(rows,cols); } - template - inline SparseVector(const MatrixBase& other) - : m_size(0) - { - *this = other.derived(); - } - template inline SparseVector(const SparseMatrixBase& other) : m_size(0)