aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Select.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2014-12-02 14:40:19 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2014-12-02 14:40:19 +0100
commit775f7e5fbb1e40bc227f459415c6a0dcfa5cd61a (patch)
treea112e65e9efe76433c83d321b03169c4850341cc /Eigen/src/Core/Select.h
parenta819fa148d177c25704b07ae1d84968bbd38051c (diff)
bug #697: make sure empty classes are at the end in case of multiple inheritence
Diffstat (limited to 'Eigen/src/Core/Select.h')
-rw-r--r--Eigen/src/Core/Select.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/Select.h b/Eigen/src/Core/Select.h
index 0c09a4ff4..79eec1b5b 100644
--- a/Eigen/src/Core/Select.h
+++ b/Eigen/src/Core/Select.h
@@ -49,8 +49,8 @@ struct traits<Select<ConditionMatrixType, ThenMatrixType, ElseMatrixType> >
}
template<typename ConditionMatrixType, typename ThenMatrixType, typename ElseMatrixType>
-class Select : internal::no_assignment_operator,
- public internal::dense_xpr_base< Select<ConditionMatrixType, ThenMatrixType, ElseMatrixType> >::type
+class Select : public internal::dense_xpr_base< Select<ConditionMatrixType, ThenMatrixType, ElseMatrixType> >::type,
+ internal::no_assignment_operator
{
public: