aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen/AlignedVector3
diff options
context:
space:
mode:
authorGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2014-09-30 16:43:19 +0200
committerGravatar Christoph Hertzberg <chtz@informatik.uni-bremen.de>2014-09-30 16:43:19 +0200
commit6d26deb894fa62a429b717efd4d4b3aa31aba88a (patch)
tree008ba4256e96106fe1dea14a75c96156e8559d30 /unsupported/Eigen/AlignedVector3
parent81517eebc1c371cedc057130af7513ddd72de35a (diff)
Missing outerStride in AlignedVector3 resulted in infinite recursion
Diffstat (limited to 'unsupported/Eigen/AlignedVector3')
-rw-r--r--unsupported/Eigen/AlignedVector31
1 files changed, 1 insertions, 0 deletions
diff --git a/unsupported/Eigen/AlignedVector3 b/unsupported/Eigen/AlignedVector3
index 35493e87b..1fce00525 100644
--- a/unsupported/Eigen/AlignedVector3
+++ b/unsupported/Eigen/AlignedVector3
@@ -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); }