aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/VectorwiseOp.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/VectorwiseOp.h
parenta819fa148d177c25704b07ae1d84968bbd38051c (diff)
bug #697: make sure empty classes are at the end in case of multiple inheritence
Diffstat (limited to 'Eigen/src/Core/VectorwiseOp.h')
-rw-r--r--Eigen/src/Core/VectorwiseOp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/VectorwiseOp.h b/Eigen/src/Core/VectorwiseOp.h
index 2815a16c9..a626310ec 100644
--- a/Eigen/src/Core/VectorwiseOp.h
+++ b/Eigen/src/Core/VectorwiseOp.h
@@ -55,8 +55,8 @@ struct traits<PartialReduxExpr<MatrixType, MemberOp, Direction> >
}
template< typename MatrixType, typename MemberOp, int Direction>
-class PartialReduxExpr : internal::no_assignment_operator,
- public internal::dense_xpr_base< PartialReduxExpr<MatrixType, MemberOp, Direction> >::type
+class PartialReduxExpr : public internal::dense_xpr_base< PartialReduxExpr<MatrixType, MemberOp, Direction> >::type,
+ internal::no_assignment_operator
{
public: