aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/examples/class_Block.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/class_Block.cpp')
-rw-r--r--doc/examples/class_Block.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/class_Block.cpp b/doc/examples/class_Block.cpp
index 79cc314bf..03e5c28aa 100644
--- a/doc/examples/class_Block.cpp
+++ b/doc/examples/class_Block.cpp
@@ -18,7 +18,7 @@ topLeftCorner(const MatrixBase<Derived>& m, int rows, int cols)
int main(int, char**)
{
- Matrix4d m = Matrix4d::identity();
+ Matrix4d m = Matrix4d::Identity();
cout << topLeftCorner(4*m, 2, 3) << endl; // calls the const version
topLeftCorner(m, 2, 3) *= 5; // calls the non-const version
cout << "Now the matrix m is:" << endl << m << endl;