From 5160e9d0292b7ebf39376803c5b7764f0f838714 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Thu, 27 Sep 2007 19:38:40 +0000 Subject: Half-way commit prefixing object names. I am forced to commit now because I renamed a file once with a wrong filename and svn refuses to let me rename it again, tells me i should propagate first. --- doc/tutorial.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/tutorial.cpp b/doc/tutorial.cpp index 2eec7be3e..38943ec50 100644 --- a/doc/tutorial.cpp +++ b/doc/tutorial.cpp @@ -12,7 +12,7 @@ int main(int, char **) cout << "Here is a 2x2 matrix m:" << endl << m << endl; cout << "Let us now build a 4x4 matrix m2 by assembling together four 2x2 blocks." << endl; - MatrixXd m2(4,4); // dynamic matrix with initial size 4x4 and uninitialized entries + EiMatrixXd m2(4,4); // dynamic matrix with initial size 4x4 and uninitialized entries // notice how we are mixing fixed-size and dynamic-size types. cout << "In the top-left block, we put the matrix m shown above." << endl; -- cgit v1.2.3