aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/StlContainers.dox
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-01-13 08:30:17 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-01-13 08:30:17 +0000
commitec0b2f900c8850799cf803ab6e0ee64f101e8e9a (patch)
tree5a71fe51905e38f2e8eba493a999189fd9c359ec /doc/StlContainers.dox
parentb179f8e1a49138c4a0e13d4a861a3f670c975386 (diff)
fix a couple of doxygen issues
Diffstat (limited to 'doc/StlContainers.dox')
-rw-r--r--doc/StlContainers.dox4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/StlContainers.dox b/doc/StlContainers.dox
index 433ae8a72..f51ed6fd2 100644
--- a/doc/StlContainers.dox
+++ b/doc/StlContainers.dox
@@ -12,7 +12,7 @@ namespace Eigen {
Using STL containers on \ref FixedSizeVectorizable "fixed-size vectorizable Eigen types" requires taking the following two steps:
\li A 16-byte-aligned allocator must be used. Eigen does provide one ready for use: aligned_allocator.
-\li If you want to use the std::vector container, you need to #include <Eigen/StdVector>.
+\li If you want to use the std::vector container, you need to \#include <Eigen/StdVector>.
These issues arise only with \ref FixedSizeVectorizable "fixed-size vectorizable Eigen types". For other Eigen types, such as Vector3f or MatrixXd, no special care is needed when using STL containers.
@@ -32,7 +32,7 @@ Note that here, the 3rd parameter "std::less<int>" is just the default value, we
\section vector The case of std::vector
-The situation with std::vector was even worse (explanation below) so we had to specialize it for Eigen types. The upside is that our specialization takes care of specifying the aligned allocator, so you don't need to worry about it. All you need to do is to #include <Eigen/StdVector>.
+The situation with std::vector was even worse (explanation below) so we had to specialize it for Eigen types. The upside is that our specialization takes care of specifying the aligned allocator, so you don't need to worry about it. All you need to do is to \#include <Eigen/StdVector>.
So as soon as you have
\code