aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/ReturnByValue.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-04-23 12:16:30 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-04-23 12:16:30 -0400
commite3e34b5920c9d522e53e4800218b53633df71f86 (patch)
tree00cfe0ab4f7871ae096c0440f6c416e9d7f05a88 /Eigen/src/Core/ReturnByValue.h
parenta16ba80bfa492f68cc699979ccda63519d782421 (diff)
remove MakeBase, use ei_dense_xpr_base instead
(yes, it was only used in dense xprs anyway)
Diffstat (limited to 'Eigen/src/Core/ReturnByValue.h')
-rw-r--r--Eigen/src/Core/ReturnByValue.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Eigen/src/Core/ReturnByValue.h b/Eigen/src/Core/ReturnByValue.h
index 160b973bd..986bab54d 100644
--- a/Eigen/src/Core/ReturnByValue.h
+++ b/Eigen/src/Core/ReturnByValue.h
@@ -2,7 +2,7 @@
// for linear algebra.
//
// Copyright (C) 2009-2010 Gael Guennebaud <g.gael@free.fr>
-// Copyright (C) 2009 Benoit Jacob <jacob.benoit.1@gmail.com>
+// Copyright (C) 2009-2010 Benoit Jacob <jacob.benoit.1@gmail.com>
//
// Eigen is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
@@ -53,11 +53,11 @@ struct ei_nested<ReturnByValue<Derived>, n, PlainObject>
};
template<typename Derived> class ReturnByValue
- : public ei_traits<Derived>::ReturnType::template MakeBase<ReturnByValue<Derived> >::Type
+ : public ei_dense_xpr_base< ReturnByValue<Derived> >::type
{
public:
typedef typename ei_traits<Derived>::ReturnType ReturnType;
- typedef typename ReturnType::template MakeBase<ReturnByValue<Derived> >::Type Base;
+ typedef typename ei_dense_xpr_base<ReturnByValue>::type Base;
EIGEN_DENSE_PUBLIC_INTERFACE(ReturnByValue)
template<typename Dest>