summaryrefslogtreecommitdiff
path: root/boost/container/pmr/set.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/container/pmr/set.hpp')
-rw-r--r--boost/container/pmr/set.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/boost/container/pmr/set.hpp b/boost/container/pmr/set.hpp
index 6f2c3bfb29..04583ce2dd 100644
--- a/boost/container/pmr/set.hpp
+++ b/boost/container/pmr/set.hpp
@@ -36,6 +36,8 @@ using multiset = boost::container::multiset<Key, Compare, polymorphic_allocator<
#endif
+//! A portable metafunction to obtain a set
+//! that uses a polymorphic allocator
template <class Key
,class Compare = std::less<Key>
,class Options = tree_assoc_defaults >
@@ -44,6 +46,8 @@ struct set_of
typedef boost::container::set<Key, Compare, polymorphic_allocator<Key>, Options> type;
};
+//! A portable metafunction to obtain a multiset
+//! that uses a polymorphic allocator
template <class Key
,class Compare = std::less<Key>
,class Options = tree_assoc_defaults >