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();