aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/Tutorial_std_sort_rows_cxx11.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/snippets/Tutorial_std_sort_rows_cxx11.cpp')
-rw-r--r--doc/snippets/Tutorial_std_sort_rows_cxx11.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/snippets/Tutorial_std_sort_rows_cxx11.cpp b/doc/snippets/Tutorial_std_sort_rows_cxx11.cpp
index fdd850d13..03641603d 100644
--- a/doc/snippets/Tutorial_std_sort_rows_cxx11.cpp
+++ b/doc/snippets/Tutorial_std_sort_rows_cxx11.cpp
@@ -2,4 +2,4 @@ ArrayXXi A = ArrayXXi::Random(4,4).abs();
cout << "Here is the initial matrix A:\n" << A << "\n";
for(auto row : A.rowwise())
std::sort(row.begin(), row.end());
-cout << "Here is the sorted matrix A:\n" << A << "\n"; \ No newline at end of file
+cout << "Here is the sorted matrix A:\n" << A << "\n";