mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Missing outerStride in AlignedVector3 resulted in infinite recursion
This commit is contained in:
@@ -61,6 +61,7 @@ template<typename _Scalar> class AlignedVector3
|
|||||||
Scalar* data() { return m_coeffs.data(); }
|
Scalar* data() { return m_coeffs.data(); }
|
||||||
const Scalar* data() const { return m_coeffs.data(); }
|
const Scalar* data() const { return m_coeffs.data(); }
|
||||||
Index innerStride() const { return 1; }
|
Index innerStride() const { return 1; }
|
||||||
|
Index outerStride() const { return m_coeffs.outerStride(); }
|
||||||
|
|
||||||
inline const Scalar& coeff(Index row, Index col) const
|
inline const Scalar& coeff(Index row, Index col) const
|
||||||
{ return m_coeffs.coeff(row, col); }
|
{ return m_coeffs.coeff(row, col); }
|
||||||
|
|||||||
Reference in New Issue
Block a user