aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/D07_PassingByValue.dox
diff options
context:
space:
mode:
Diffstat (limited to 'doc/D07_PassingByValue.dox')
-rw-r--r--doc/D07_PassingByValue.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/D07_PassingByValue.dox b/doc/D07_PassingByValue.dox
index b1e5e683b..bf4d0ef4b 100644
--- a/doc/D07_PassingByValue.dox
+++ b/doc/D07_PassingByValue.dox
@@ -1,6 +1,6 @@
namespace Eigen {
-/** \page TopicPassingByValue Passing Eigen objects by value to functions
+/** \eigenManualPage TopicPassingByValue Passing Eigen objects by value to functions
Passing objects by value is almost always a very bad idea in C++, as this means useless copies, and one should pass them by reference instead.