aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Block.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/Block.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/Block.h')
-rw-r--r--Eigen/src/Core/Block.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/Block.h b/Eigen/src/Core/Block.h
index c02e45074..6f338d020 100644
--- a/Eigen/src/Core/Block.h
+++ b/Eigen/src/Core/Block.h
@@ -104,7 +104,7 @@ template<typename XprType, int BlockRows, int BlockCols, bool HasDirectAccess> c
{
public:
- typedef typename XprType::template MakeBase<Block>::Type Base;
+ typedef typename ei_dense_xpr_base<Block>::type Base;
EIGEN_DENSE_PUBLIC_INTERFACE(Block)
class InnerIterator;