Fix return type of TriangularView::ReverseInnerIterator::operator++

This commit is contained in:
Gael Guennebaud 2013-05-17 14:40:32 +02:00
parent bd0474adbb
commit bd7511fc36

View File

@ -139,7 +139,7 @@ class SparseTriangularView<MatrixType,Mode>::ReverseInnerIterator : public Matri
--(*this);
}
EIGEN_STRONG_INLINE InnerIterator& operator--()
EIGEN_STRONG_INLINE ReverseInnerIterator& operator--()
{ Base::operator--(); return *this; }
inline Index row() const { return Base::row(); }