From ca6a2a524832e051b64a1545a91220f9dc9887cb Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 26 Oct 2016 14:13:05 +0200 Subject: [PATCH] Fix warning with ICC --- 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 00c079bd8..1d14af652 100644 --- a/Eigen/src/Core/CoreEvaluators.h +++ b/Eigen/src/Core/CoreEvaluators.h @@ -1302,7 +1302,7 @@ struct evaluator > } protected: - const ArgTypeNested m_arg; + typename internal::add_const_on_value_type::type m_arg; const MemberOp m_functor; };