Fix inverse evaluator

This commit is contained in:
Gael Guennebaud 2014-06-25 23:44:59 +02:00
parent a7bd4c455a
commit 54607665ab

View File

@ -109,8 +109,8 @@ struct unary_evaluator<Inverse<XprType> >
typedef typename InverseType::PlainObject PlainObject;
typedef typename evaluator<PlainObject>::type Base;
typedef evaluator<XprType> type;
typedef evaluator<XprType> nestedType;
typedef evaluator<InverseType> type;
typedef evaluator<InverseType> nestedType;
enum { Flags = Base::Flags | EvalBeforeNestingBit };