aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Block.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-01-06 17:16:30 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-01-06 17:16:30 +0100
commitc11300dbd52accc3724300854ede5df4b09ab2a6 (patch)
tree4b0341a69c84b8161ec9db857fe5fc9ffd395790 /Eigen/src/Core/Block.h
parenta0efdd843c7c47839e31501495cb67e456d7154f (diff)
a couple of fixes
Diffstat (limited to 'Eigen/src/Core/Block.h')
-rw-r--r--Eigen/src/Core/Block.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Eigen/src/Core/Block.h b/Eigen/src/Core/Block.h
index 461652410..fa63d27dc 100644
--- a/Eigen/src/Core/Block.h
+++ b/Eigen/src/Core/Block.h
@@ -81,11 +81,12 @@ struct ei_traits<Block<MatrixType, BlockRows, BlockCols, _DirectAccessStatus> >
};
template<typename MatrixType, int BlockRows, int BlockCols, int _DirectAccessStatus> class Block
- :public MatrixType::template MakeBase< Block<MatrixType, BlockRows, BlockCols, _DirectAccessStatus> >::Type
+ : public MatrixType::template MakeBase< Block<MatrixType, BlockRows, BlockCols, _DirectAccessStatus> >::Type
{
public:
- EIGEN_GENERIC_PUBLIC_INTERFACE(Block)
+ typedef typename MatrixType::template MakeBase< Block<MatrixType, BlockRows, BlockCols, _DirectAccessStatus> >::Type Base;
+ _EIGEN_DENSE_PUBLIC_INTERFACE(Block)
class InnerIterator;