aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-03-31 10:02:02 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-03-31 10:02:02 +0200
commitb471161f28e13b41fdc847f441de04ab3aadbfe8 (patch)
treec505464f4daa5f082442b3ad832d1bb34f3fc793
parent969e92261d3da900cd472d74abda9357ac994146 (diff)
fix typo and remove unused declaration.
-rw-r--r--Eigen/src/Core/SelfAdjointView.h2
-rw-r--r--Eigen/src/Sparse/SparseSelfAdjointView.h3
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<typename Lhs, typename Rhs, int UpLo>
class SparseSelfAdjointTimeDenseProduct;
@@ -235,7 +235,6 @@ class SparseSelfAdjointTimeDenseProduct
dest.row(j) += i.value() * m_rhs.row(j);
++i;
}
- Block<Dest,1,Dest::ColsAtCompileTime> dest_j(dest.row(LhsIsRowMajor ? j : 0));
for(; (ProcessFirstHalf ? i && i.index() < j : i) ; ++i)
{
Index a = LhsIsRowMajor ? j : i.index();