From b8cf34c691623e4ec329053cbbf68522a855882d Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Thu, 5 Dec 2019 15:12:59 +0900 Subject: Imported Upstream version 1.67.0 --- doc/html/boost/container/pmr/map_of.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'doc/html/boost/container/pmr/map_of.html') diff --git a/doc/html/boost/container/pmr/map_of.html b/doc/html/boost/container/pmr/map_of.html index f1499d09bc..b563fb94a4 100644 --- a/doc/html/boost/container/pmr/map_of.html +++ b/doc/html/boost/container/pmr/map_of.html @@ -33,19 +33,20 @@
// In header: <boost/container/pmr/map.hpp>
 
 template<typename Key, typename T, typename Compare = std::less<Key>, 
-         typename Options = tree_assoc_defaults> 
+         typename Options = void> 
 struct map_of {
   // types
   typedef boost::container::map< Key, T, Compare, polymorphic_allocator< std::pair< const Key, T > >, Options > type;
 };
-

Description

+

Description

A portable metafunction to obtain a map that uses a polymorphic allocator

-