aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/CwiseBinaryOp.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/CwiseBinaryOp.h
parenta819fa148d177c25704b07ae1d84968bbd38051c (diff)
bug #697: make sure empty classes are at the end in case of multiple inheritence
Diffstat (limited to 'Eigen/src/Core/CwiseBinaryOp.h')
-rw-r--r--Eigen/src/Core/CwiseBinaryOp.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Eigen/src/Core/CwiseBinaryOp.h b/Eigen/src/Core/CwiseBinaryOp.h
index de9109e53..a205c3f10 100644
--- a/Eigen/src/Core/CwiseBinaryOp.h
+++ b/Eigen/src/Core/CwiseBinaryOp.h
@@ -75,12 +75,13 @@ template<typename BinaryOp, typename Lhs, typename Rhs, typename StorageKind>
class CwiseBinaryOpImpl;
template<typename BinaryOp, typename LhsType, typename RhsType>
-class CwiseBinaryOp : internal::no_assignment_operator,
+class CwiseBinaryOp :
public CwiseBinaryOpImpl<
BinaryOp, LhsType, RhsType,
typename internal::cwise_promote_storage_type<typename internal::traits<LhsType>::StorageKind,
typename internal::traits<RhsType>::StorageKind,
- BinaryOp>::ret>
+ BinaryOp>::ret>,
+ internal::no_assignment_operator
{
public: