aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/snippets
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-09-19 11:49:26 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-09-19 11:49:26 +0200
commitc3a19527a213cbfa5dc8112c75347702c3a29644 (patch)
tree0038d42ad7fc6c91b03bfeedc013ed6afcfb8f4b /doc/snippets
parentdfa8439e4d71a3b8dafc38a8419998e683f3ee96 (diff)
Fix doc wrt previous change
Diffstat (limited to 'doc/snippets')
-rw-r--r--doc/snippets/MatrixBase_reshaped_auto.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/snippets/MatrixBase_reshaped_auto.cpp b/doc/snippets/MatrixBase_reshaped_auto.cpp
index 2adf321f3..59f9d3f60 100644
--- a/doc/snippets/MatrixBase_reshaped_auto.cpp
+++ b/doc/snippets/MatrixBase_reshaped_auto.cpp
@@ -1,4 +1,4 @@
Matrix4i m = Matrix4i::Random();
cout << "Here is the matrix m:" << endl << m << endl;
cout << "Here is m.reshaped(2, AutoSize):" << endl << m.reshaped(2, AutoSize) << endl;
-cout << "Here is m.reshaped(AutoSize, fix<8>, RowOrder):" << endl << m.reshaped(AutoSize, fix<8>, RowOrder) << endl;
+cout << "Here is m.reshaped<RowMajor>(AutoSize, fix<8>):" << endl << m.reshaped<RowMajor>(AutoSize, fix<8>) << endl;