aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Inverse.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2014-09-24 09:39:09 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2014-09-24 09:39:09 +0200
commit446001ef51be920649cb4f3c07848967b6788532 (patch)
tree56e06704ed663fa2e79badb713ae6b4f9c2b1525 /Eigen/src/Core/Inverse.h
parent13cbc751c92248e0dfa969bfe5f5060773ac9972 (diff)
Fix nested_eval<Product<> > which wrongly returned a Product<> expression
Diffstat (limited to 'Eigen/src/Core/Inverse.h')
-rw-r--r--Eigen/src/Core/Inverse.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/Eigen/src/Core/Inverse.h b/Eigen/src/Core/Inverse.h
index 706796b78..f3b0dff87 100644
--- a/Eigen/src/Core/Inverse.h
+++ b/Eigen/src/Core/Inverse.h
@@ -25,8 +25,7 @@ struct traits<Inverse<XprType> >
typedef typename XprType::PlainObject PlainObject;
typedef traits<PlainObject> BaseTraits;
enum {
- Flags = BaseTraits::Flags & RowMajorBit,
- CoeffReadCost = Dynamic
+ Flags = BaseTraits::Flags & RowMajorBit
};
};