aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/tut_arithmetic_transpose_aliasing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/snippets/tut_arithmetic_transpose_aliasing.cpp')
-rw-r--r--doc/snippets/tut_arithmetic_transpose_aliasing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/snippets/tut_arithmetic_transpose_aliasing.cpp b/doc/snippets/tut_arithmetic_transpose_aliasing.cpp
index c8e4746d0..f82e6f2ac 100644
--- a/doc/snippets/tut_arithmetic_transpose_aliasing.cpp
+++ b/doc/snippets/tut_arithmetic_transpose_aliasing.cpp
@@ -2,4 +2,4 @@ Matrix2i a; a << 1, 2, 3, 4;
cout << "Here is the matrix a:\n" << a << endl;
a = a.transpose(); // !!! do NOT do this !!!
-cout << "and the result of the aliasing effect:\n" << a << endl; \ No newline at end of file
+cout << "and the result of the aliasing effect:\n" << a << endl;