From 78bd2c0736538661aaee4c8c95223eace9844045 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Tue, 11 Mar 2014 03:48:26 +0000 Subject: [PATCH] Fix map allocators in introduction. Fixes trac #9719. --- doc/intro.qbk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/intro.qbk b/doc/intro.qbk index 257b959a..72c93b66 100644 --- a/doc/intro.qbk +++ b/doc/intro.qbk @@ -54,14 +54,14 @@ order to work with non-C++11 compilers and libraries. class Key, class Mapped, class Hash = ``[classref boost::hash]``, class Pred = std::equal_to, - class Alloc = std::allocator > + class Alloc = std::allocator > > class ``[classref boost::unordered_map unordered_map]``; template< class Key, class Mapped, class Hash = ``[classref boost::hash]``, class Pred = std::equal_to, - class Alloc = std::allocator > + class Alloc = std::allocator > > class ``[classref boost::unordered_multimap unordered_multimap]``; }