From fe85b7ebc69d98d65c0d70b189416c384408b6f7 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 3 Feb 2012 23:18:26 +0100 Subject: fix several const qualifier issues: double ones, meaningless ones, some missing ones, etc. (note that const qualifiers are set by internall::nested) --- Eigen/src/Core/Select.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Eigen/src/Core/Select.h') diff --git a/Eigen/src/Core/Select.h b/Eigen/src/Core/Select.h index 87a071fc7..832ca2735 100644 --- a/Eigen/src/Core/Select.h +++ b/Eigen/src/Core/Select.h @@ -117,9 +117,9 @@ class Select : internal::no_assignment_operator, } protected: - const typename ConditionMatrixType::Nested m_condition; - const typename ThenMatrixType::Nested m_then; - const typename ElseMatrixType::Nested m_else; + typename ConditionMatrixType::Nested m_condition; + typename ThenMatrixType::Nested m_then; + typename ElseMatrixType::Nested m_else; }; -- cgit v1.2.3