aboutsummaryrefslogtreecommitdiffhomepage
path: root/disabled
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-04-03 11:10:17 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-04-03 11:10:17 +0000
commitd1a29d6319d6919e0c3d1c624ad45d8202be1942 (patch)
treeb9882a823c7d08819037d341f7e61971304eeadf /disabled
parente74fbfb2bc13dee268950361a957aea73bcefc21 (diff)
-new: recursive costs system, useful to determine automatically
when to evaluate arguments and when to meta-unroll. -use it in Product to determine when to eval args. not yet used to determine when to unroll. for now, not used anywhere else but that'll follow. -fix badness of my last commit
Diffstat (limited to 'disabled')
-rw-r--r--disabled/Eval.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/disabled/Eval.h b/disabled/Eval.h
index 23e35a96a..074a12df9 100644
--- a/disabled/Eval.h
+++ b/disabled/Eval.h
@@ -101,9 +101,9 @@ template<typename ExpressionType> class Eval : ei_no_assignment_operator,
*
* \sa class Eval */
template<typename Derived>
-const typename ei_eval_unless_lazy<Derived>::Type MatrixBase<Derived>::eval() const
+const typename ei_eval_unless_lazy<Derived>::type MatrixBase<Derived>::eval() const
{
- return typename ei_eval_unless_lazy<Derived>::Type(derived());
+ return typename ei_eval_unless_lazy<Derived>::type(derived());
}
#endif // EIGEN_EVAL_H