aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp')
-rw-r--r--doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp b/doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp
index 7e532d3c8..4a12d26c7 100644
--- a/doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp
+++ b/doc/snippets/Tutorial_range_for_loop_2d_cxx11.cpp
@@ -2,4 +2,4 @@ Matrix2i A = Matrix2i::Random();
cout << "Here are the coeffs of the 2x2 matrix A:\n";
for(auto x : A.reshaped())
cout << x << " ";
-cout << "\n"; \ No newline at end of file
+cout << "\n";