diff options
Diffstat (limited to 'libcxx/include/experimental/set')
| -rw-r--r-- | libcxx/include/experimental/set | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcxx/include/experimental/set b/libcxx/include/experimental/set index e2e75e35448b..cd61e6449597 100644 --- a/libcxx/include/experimental/set +++ b/libcxx/include/experimental/set @@ -45,6 +45,8 @@ namespace pmr { _LIBCPP_BEGIN_NAMESPACE_LFTS_PMR +#ifndef _LIBCPP_CXX03_LANG + template <class _Value, class _Compare = less<_Value>> using set = _VSTD::set<_Value, _Compare, polymorphic_allocator<_Value>>; @@ -53,6 +55,8 @@ template <class _Value, class _Compare = less<_Value>> using multiset = _VSTD::multiset<_Value, _Compare, polymorphic_allocator<_Value>>; +#endif // _LIBCPP_CXX03_LANG + _LIBCPP_END_NAMESPACE_LFTS_PMR #endif /* _LIBCPP_EXPERIMENTAL_SET */ |
