mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fix return type of TriangularView::ReverseInnerIterator::operator++
This commit is contained in:
@@ -139,7 +139,7 @@ class SparseTriangularView<MatrixType,Mode>::ReverseInnerIterator : public Matri
|
|||||||
--(*this);
|
--(*this);
|
||||||
}
|
}
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE InnerIterator& operator--()
|
EIGEN_STRONG_INLINE ReverseInnerIterator& operator--()
|
||||||
{ Base::operator--(); return *this; }
|
{ Base::operator--(); return *this; }
|
||||||
|
|
||||||
inline Index row() const { return Base::row(); }
|
inline Index row() const { return Base::row(); }
|
||||||
|
|||||||
Reference in New Issue
Block a user