mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-08 17:59:00 +08:00
simple compilation fix
This commit is contained in:
parent
a108216af1
commit
d9f5840f7a
@ -74,9 +74,9 @@ template<typename MatrixType, int Mode> class SparseTriangularView
|
|||||||
};
|
};
|
||||||
|
|
||||||
template<typename MatrixType, int Mode>
|
template<typename MatrixType, int Mode>
|
||||||
class SparseTriangularView<MatrixType,Mode>::InnerIterator : public MatrixTypeNested::InnerIterator
|
class SparseTriangularView<MatrixType,Mode>::InnerIterator : public MatrixTypeNestedCleaned::InnerIterator
|
||||||
{
|
{
|
||||||
typedef typename MatrixTypeNested::InnerIterator Base;
|
typedef typename MatrixTypeNestedCleaned::InnerIterator Base;
|
||||||
public:
|
public:
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE InnerIterator(const SparseTriangularView& view, Index outer)
|
EIGEN_STRONG_INLINE InnerIterator(const SparseTriangularView& view, Index outer)
|
||||||
@ -138,9 +138,9 @@ class SparseTriangularView<MatrixType,Mode>::InnerIterator : public MatrixTypeNe
|
|||||||
};
|
};
|
||||||
|
|
||||||
template<typename MatrixType, int Mode>
|
template<typename MatrixType, int Mode>
|
||||||
class SparseTriangularView<MatrixType,Mode>::ReverseInnerIterator : public MatrixTypeNested::ReverseInnerIterator
|
class SparseTriangularView<MatrixType,Mode>::ReverseInnerIterator : public MatrixTypeNestedCleaned::ReverseInnerIterator
|
||||||
{
|
{
|
||||||
typedef typename MatrixTypeNested::ReverseInnerIterator Base;
|
typedef typename MatrixTypeNestedCleaned::ReverseInnerIterator Base;
|
||||||
public:
|
public:
|
||||||
|
|
||||||
EIGEN_STRONG_INLINE ReverseInnerIterator(const SparseTriangularView& view, Index outer)
|
EIGEN_STRONG_INLINE ReverseInnerIterator(const SparseTriangularView& view, Index outer)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user