aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Redux.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2014-03-12 18:14:08 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2014-03-12 18:14:08 +0100
commitf74ed345395b57f299d597c835177222120d9992 (patch)
treece03865e524c8eca0714cf4267082061e021ef18 /Eigen/src/Core/Redux.h
parent5e26b7cf9dc23bbcaaf28f1416a6e3d8da4bdac0 (diff)
Fix regressions in redux_evaluator flags and evaluator<Block> flags
Diffstat (limited to 'Eigen/src/Core/Redux.h')
-rw-r--r--Eigen/src/Core/Redux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/Redux.h b/Eigen/src/Core/Redux.h
index b9d59af47..1e2270d34 100644
--- a/Eigen/src/Core/Redux.h
+++ b/Eigen/src/Core/Redux.h
@@ -351,7 +351,7 @@ public:
MaxRowsAtCompileTime = XprType::MaxRowsAtCompileTime,
MaxColsAtCompileTime = XprType::MaxColsAtCompileTime,
// TODO we should not remove DirectAccessBit and rather find an elegant way to query the alignment offset at runtime from the evaluator
- Flags = XprType::Flags & ~DirectAccessBit,
+ Flags = evaluator<XprType>::Flags & ~DirectAccessBit,
IsRowMajor = XprType::IsRowMajor,
SizeAtCompileTime = XprType::SizeAtCompileTime,
InnerSizeAtCompileTime = XprType::InnerSizeAtCompileTime,