From 9ba15cd63cd90a4c07fe25890fc631964587ea44 Mon Sep 17 00:00:00 2001 From: Jose Luis Blanco Date: Fri, 12 Nov 2010 10:05:41 +0000 Subject: [PATCH] Docs: correct declaration of aligned std::map in TopicStlContainers. --- doc/D01_StlContainers.dox | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/D01_StlContainers.dox b/doc/D01_StlContainers.dox index e6c96c679..92c67c0ba 100644 --- a/doc/D01_StlContainers.dox +++ b/doc/D01_StlContainers.dox @@ -26,7 +26,8 @@ std::map \endcode you need to use \code -std::map, Eigen::aligned_allocator > +std::map, + std::pair > > \endcode Note that here, the 3rd parameter "std::less" is just the default value, we only had to specify it because we needed to specify the allocator type, that is the 4th parameter.