mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-15 13:15:57 +08:00
Workaround MSVC compilation issue
(Visual messed up with the BlockType defined in the base class, and the redefined one)
This commit is contained in:
parent
f7ddd033e1
commit
91b2fa2985
@ -29,7 +29,7 @@ public:
|
|||||||
{
|
{
|
||||||
typedef typename BlockImpl::Index Index;
|
typedef typename BlockImpl::Index Index;
|
||||||
public:
|
public:
|
||||||
inline InnerIterator(const BlockType& xpr, Index outer)
|
inline InnerIterator(const Block<XprType, BlockRows, BlockCols, true>& xpr, Index outer)
|
||||||
: XprType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
|
: XprType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
|
||||||
{}
|
{}
|
||||||
inline Index row() const { return IsRowMajor ? m_outer : this->index(); }
|
inline Index row() const { return IsRowMajor ? m_outer : this->index(); }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user