aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/SelfAdjointView.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2013-12-14 22:53:47 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2013-12-14 22:53:47 +0100
commitd357bbd9c06f4b6088de0a8e47b3e56fdd0b99b3 (patch)
tree344a2618a4d283f08816498f6da210e90bf4bb54 /Eigen/src/Core/SelfAdjointView.h
parent27c068e9d6230398b74a1c7b7146d7842c509de7 (diff)
Fix a few regression regarding temporaries and products
Diffstat (limited to 'Eigen/src/Core/SelfAdjointView.h')
-rw-r--r--Eigen/src/Core/SelfAdjointView.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Eigen/src/Core/SelfAdjointView.h b/Eigen/src/Core/SelfAdjointView.h
index 079b987f8..a5c6d5ceb 100644
--- a/Eigen/src/Core/SelfAdjointView.h
+++ b/Eigen/src/Core/SelfAdjointView.h
@@ -336,6 +336,7 @@ struct triangular_assignment_selector<Derived1, Derived2, SelfAdjoint|Lower, Dyn
}
};
+#ifdef EIGEN_ENABLE_EVALUATORS
// TODO currently a selfadjoint expression has the form SelfAdjointView<.,.>
// in the future selfadjoint-ness should be defined by the expression traits
// such that Transpose<SelfAdjointView<.,.> > is valid. (currently TriangularBase::transpose() is overloaded to make it work)
@@ -347,6 +348,7 @@ struct evaluator_traits<SelfAdjointView<MatrixType,Mode> >
static const int AssumeAliasing = 0;
};
+#endif // EIGEN_ENABLE_EVALUATORS
} // end namespace internal