aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Tutorial_reshaped_vs_resize_1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/snippets/Tutorial_reshaped_vs_resize_1.cpp')
-rw-r--r--doc/snippets/Tutorial_reshaped_vs_resize_1.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/snippets/Tutorial_reshaped_vs_resize_1.cpp b/doc/snippets/Tutorial_reshaped_vs_resize_1.cpp
index 686b96c38..e520e8e6b 100644
--- a/doc/snippets/Tutorial_reshaped_vs_resize_1.cpp
+++ b/doc/snippets/Tutorial_reshaped_vs_resize_1.cpp
@@ -2,4 +2,4 @@ MatrixXi m = Matrix4i::Random();
cout << "Here is the matrix m:" << endl << m << endl;
cout << "Here is m.reshaped(2, 8):" << endl << m.reshaped(2, 8) << endl;
m.resize(2,8);
-cout << "Here is the matrix m after m.resize(2,8):" << endl << m << endl; \ No newline at end of file
+cout << "Here is the matrix m after m.resize(2,8):" << endl << m << endl;