From b471161f28e13b41fdc847f441de04ab3aadbfe8 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 31 Mar 2011 10:02:02 +0200 Subject: [PATCH] fix typo and remove unused declaration. --- Eigen/src/Core/SelfAdjointView.h | 2 +- Eigen/src/Sparse/SparseSelfAdjointView.h | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Eigen/src/Core/SelfAdjointView.h b/Eigen/src/Core/SelfAdjointView.h index 0e9872bf5..4bb90c373 100644 --- a/Eigen/src/Core/SelfAdjointView.h +++ b/Eigen/src/Core/SelfAdjointView.h @@ -38,7 +38,7 @@ * with given dense storage of the coefficients. It is the return type of MatrixBase::selfadjointView() * and most of the time this is the only way that it is used. * - * \sa class TriangularBase, MatrixBase::selfAdjointView() + * \sa class TriangularBase, MatrixBase::selfadjointView() */ namespace internal { diff --git a/Eigen/src/Sparse/SparseSelfAdjointView.h b/Eigen/src/Sparse/SparseSelfAdjointView.h index 8be358db8..819996ec0 100644 --- a/Eigen/src/Sparse/SparseSelfAdjointView.h +++ b/Eigen/src/Sparse/SparseSelfAdjointView.h @@ -37,7 +37,7 @@ * with given dense storage of the coefficients. It is the return type of MatrixBase::selfadjointView() * and most of the time this is the only way that it is used. * - * \sa SparseMatrixBase::selfAdjointView() + * \sa SparseMatrixBase::selfadjointView() */ template class SparseSelfAdjointTimeDenseProduct; @@ -235,7 +235,6 @@ class SparseSelfAdjointTimeDenseProduct dest.row(j) += i.value() * m_rhs.row(j); ++i; } - Block dest_j(dest.row(LhsIsRowMajor ? j : 0)); for(; (ProcessFirstHalf ? i && i.index() < j : i) ; ++i) { Index a = LhsIsRowMajor ? j : i.index();