Missing outerStride in AlignedVector3 resulted in infinite recursion

This commit is contained in:
Christoph Hertzberg 2014-09-30 16:43:19 +02:00
parent 81517eebc1
commit 6d26deb894

View File

@ -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); }