From 95dc68dc8682605651583dfd83aef742f87170f4 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Sun, 13 Jan 2008 20:19:14 +0000 Subject: renaming: Block -> FixedBlock DynBlock -> Block indeed, previous commit solves the main issue with DynBlock so is should now be the more commonly used one. --- doc/examples/class_Block.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc/examples/class_Block.cpp') diff --git a/doc/examples/class_Block.cpp b/doc/examples/class_Block.cpp index a6025231e..b34cf13ad 100644 --- a/doc/examples/class_Block.cpp +++ b/doc/examples/class_Block.cpp @@ -3,17 +3,17 @@ USING_PART_OF_NAMESPACE_EIGEN using namespace std; template -Eigen::Block +Eigen::FixedBlock topLeft2x2Corner(MatrixBase& m) { - return Eigen::Block(m.ref(), 0, 0); + return Eigen::FixedBlock(m.ref(), 0, 0); } template -const Eigen::Block +const Eigen::FixedBlock topLeft2x2Corner(const MatrixBase& m) { - return Eigen::Block(m.ref(), 0, 0); + return Eigen::FixedBlock(m.ref(), 0, 0); } int main(int, char**) -- cgit v1.2.3