aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/I11_Aliasing.dox
diff options
context:
space:
mode:
Diffstat (limited to 'doc/I11_Aliasing.dox')
-rw-r--r--doc/I11_Aliasing.dox4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/I11_Aliasing.dox b/doc/I11_Aliasing.dox
index 3f7e849bd..bd1d329ce 100644
--- a/doc/I11_Aliasing.dox
+++ b/doc/I11_Aliasing.dox
@@ -1,6 +1,6 @@
namespace Eigen {
-/** \page TopicAliasing Aliasing
+/** \eigenManualPage TopicAliasing Aliasing
In Eigen, aliasing refers to assignment statement in which the same matrix (or array or vector) appears on the
left and on the right of the assignment operators. Statements like <tt>mat = 2 * mat;</tt> or <tt>mat =
@@ -8,7 +8,7 @@ mat.transpose();</tt> exhibit aliasing. The aliasing in the first example is har
second example leads to unexpected results. This page explains what aliasing is, when it is harmful, and what
to do about it.
-\tableofcontents
+\eigenAutoToc
\section TopicAliasingExamples Examples