aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-11-04 14:42:54 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-11-04 14:42:54 +0100
commit1de769d12236ee648c50a216466be7a6a47e8746 (patch)
tree4fb19d6ec4ac4c2535b84c8431e1a08a77e7e059 /Eigen
parent05de3dddcae35c8b6ea8a596ef3726127e45f619 (diff)
remove deprecated assert
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Sparse/SparseSelfAdjointView.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Sparse/SparseSelfAdjointView.h b/Eigen/src/Sparse/SparseSelfAdjointView.h
index 866c315ba..a11d12aee 100644
--- a/Eigen/src/Sparse/SparseSelfAdjointView.h
+++ b/Eigen/src/Sparse/SparseSelfAdjointView.h
@@ -300,7 +300,7 @@ void permute_symm_to_fullsymm(const MatrixType& mat, SparseMatrix<typename Matri
enum {
StorageOrderMatch = int(Dest::IsRowMajor) == int(MatrixType::IsRowMajor)
};
- eigen_assert(perm==0);
+
Index size = mat.rows();
VectorI count;
count.resize(size);