From 4ae3e0a9b8dccf2c72f111a2281228b9478757d8 Mon Sep 17 00:00:00 2001 From: Jitse Niesen Date: Sat, 14 Jul 2012 14:55:04 +0100 Subject: [PATCH] Evaluators: Fixed bug caused by Diagonal dynamic index change. This caused the evaluators unit test to fail. --- Eigen/src/Core/CoreEvaluators.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/CoreEvaluators.h b/Eigen/src/Core/CoreEvaluators.h index 608fc9842..cca01251c 100644 --- a/Eigen/src/Core/CoreEvaluators.h +++ b/Eigen/src/Core/CoreEvaluators.h @@ -1148,7 +1148,7 @@ struct evaluator_impl > protected: typename evaluator::nestedType m_argImpl; - const internal::variable_if_dynamic m_index; + const internal::variable_if_dynamicindex m_index; private: EIGEN_STRONG_INLINE Index rowOffset() const { return m_index.value() > 0 ? 0 : -m_index.value(); }