aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets/tut_matrix_assignment_resizing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/snippets/tut_matrix_assignment_resizing.cpp')
-rw-r--r--doc/snippets/tut_matrix_assignment_resizing.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/snippets/tut_matrix_assignment_resizing.cpp b/doc/snippets/tut_matrix_assignment_resizing.cpp
index 96b3c88d3..cf189983f 100644
--- a/doc/snippets/tut_matrix_assignment_resizing.cpp
+++ b/doc/snippets/tut_matrix_assignment_resizing.cpp
@@ -1,5 +1,5 @@
MatrixXf a(2,2);
-cout << "a is of size " << a.rows() << "x" << a.cols() << std::endl;
+std::cout << "a is of size " << a.rows() << "x" << a.cols() << std::endl;
MatrixXf b(3,3);
a = b;
-cout << "a is now of size " << a.rows() << "x" << a.cols() << std::endl;
+std::cout << "a is now of size " << a.rows() << "x" << a.cols() << std::endl;