mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-30 17:40:05 +08:00
Missing outerStride in AlignedVector3 resulted in infinite recursion
This commit is contained in:
parent
81517eebc1
commit
6d26deb894
@ -61,6 +61,7 @@ template<typename _Scalar> class AlignedVector3
|
||||
Scalar* data() { return m_coeffs.data(); }
|
||||
const Scalar* data() const { return m_coeffs.data(); }
|
||||
Index innerStride() const { return 1; }
|
||||
Index outerStride() const { return m_coeffs.outerStride(); }
|
||||
|
||||
inline const Scalar& coeff(Index row, Index col) const
|
||||
{ return m_coeffs.coeff(row, col); }
|
||||
|
Loading…
Reference in New Issue
Block a user