aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Inverse.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2014-06-25 23:44:59 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2014-06-25 23:44:59 +0200
commit54607665ab1650cc1d63575b231fa15e514d8aa8 (patch)
tree9c7012c64377915f759f7310ca99f7bcbc5e4053 /Eigen/src/Core/Inverse.h
parenta7bd4c455acbf19166e91f2148c042c3f2ea946e (diff)
Fix inverse evaluator
Diffstat (limited to 'Eigen/src/Core/Inverse.h')
-rw-r--r--Eigen/src/Core/Inverse.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Core/Inverse.h b/Eigen/src/Core/Inverse.h
index 2df36dbd5..1d167867f 100644
--- a/Eigen/src/Core/Inverse.h
+++ b/Eigen/src/Core/Inverse.h
@@ -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 };