1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #ifndef _LIBCPP_EXPERIMENTAL_UNORDERED_SET
- #define _LIBCPP_EXPERIMENTAL_UNORDERED_SET
- #include <experimental/__config>
- #include <unordered_set>
- #include <experimental/memory_resource>
- #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
- #pragma GCC system_header
- #endif
- _LIBCPP_BEGIN_NAMESPACE_LFTS_PMR
- template <class _Value,
- class _Hash = hash<_Value>, class _Pred = equal_to<_Value>>
- using unordered_set = _VSTD::unordered_set<_Value, _Hash, _Pred,
- polymorphic_allocator<_Value>>;
- template <class _Value,
- class _Hash = hash<_Value>, class _Pred = equal_to<_Value>>
- using unordered_multiset = _VSTD::unordered_multiset<_Value, _Hash, _Pred,
- polymorphic_allocator<_Value>>;
- _LIBCPP_END_NAMESPACE_LFTS_PMR
- #endif
|