bug #697: make sure empty classes are at the end in case of multiple inheritence

This commit is contained in:
Gael Guennebaud
2014-12-02 14:40:19 +01:00
parent a819fa148d
commit 775f7e5fbb
7 changed files with 11 additions and 12 deletions

View File

@@ -41,8 +41,7 @@ struct traits<CwiseNullaryOp<NullaryOp, PlainObjectType> > : traits<PlainObjectT
}
template<typename NullaryOp, typename PlainObjectType>
class CwiseNullaryOp : internal::no_assignment_operator,
public internal::dense_xpr_base< CwiseNullaryOp<NullaryOp, PlainObjectType> >::type
class CwiseNullaryOp : public internal::dense_xpr_base< CwiseNullaryOp<NullaryOp, PlainObjectType> >::type, internal::no_assignment_operator
{
public: