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.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/boost/container/pmr/set.hpp b/boost/container/pmr/set.hpp
index 04583ce2dd..320169667f 100644
--- a/boost/container/pmr/set.hpp
+++ b/boost/container/pmr/set.hpp
@@ -26,12 +26,12 @@ namespace pmr {
template <class Key
,class Compare = std::less<Key>
- ,class Options = tree_assoc_defaults >
+ ,class Options = void >
using set = boost::container::set<Key, Compare, polymorphic_allocator<Key>, Options>;
template <class Key
,class Compare = std::less<Key>
- ,class Options = tree_assoc_defaults >
+ ,class Options = void >
using multiset = boost::container::multiset<Key, Compare, polymorphic_allocator<Key>, Options>;
#endif
@@ -40,7 +40,7 @@ using multiset = boost::container::multiset<Key, Compare, polymorphic_allocator<
//! that uses a polymorphic allocator
template <class Key
,class Compare = std::less<Key>
- ,class Options = tree_assoc_defaults >
+ ,class Options = void >
struct set_of
{
typedef boost::container::set<Key, Compare, polymorphic_allocator<Key>, Options> type;
@@ -50,7 +50,7 @@ struct set_of
//! that uses a polymorphic allocator
template <class Key
,class Compare = std::less<Key>
- ,class Options = tree_assoc_defaults >
+ ,class Options = void >
struct multiset_of
{
typedef boost::container::multiset<Key, Compare, polymorphic_allocator<Key>, Options> type;