mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-30 11:27:15 +02:00
Fix tsl allocator
This commit is contained in:
@ -301,10 +301,10 @@ template<class K, class V> using absl_flat_hash_map =
|
|||||||
#ifdef HAVE_TSL_HOPSCOTCH
|
#ifdef HAVE_TSL_HOPSCOTCH
|
||||||
|
|
||||||
template<class K, class V> using tsl_hopscotch_map =
|
template<class K, class V> using tsl_hopscotch_map =
|
||||||
tsl::hopscotch_map<K, V, std::hash<K>, std::equal_to<K>, allocator_for<K, V>>;
|
tsl::hopscotch_map<K, V, std::hash<K>, std::equal_to<K>, ::allocator< std::pair<K, V> >>;
|
||||||
|
|
||||||
template<class K, class V> using tsl_hopscotch_pg_map =
|
template<class K, class V> using tsl_hopscotch_pg_map =
|
||||||
tsl::hopscotch_pg_map<K, V, std::hash<K>, std::equal_to<K>, allocator_for<K, V>>;
|
tsl::hopscotch_pg_map<K, V, std::hash<K>, std::equal_to<K>, ::allocator< std::pair<K, V> >>;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -379,10 +379,10 @@ template<class K, class V> using absl_flat_hash_map_fnv1a =
|
|||||||
#ifdef HAVE_TSL_HOPSCOTCH
|
#ifdef HAVE_TSL_HOPSCOTCH
|
||||||
|
|
||||||
template<class K, class V> using tsl_hopscotch_map_fnv1a =
|
template<class K, class V> using tsl_hopscotch_map_fnv1a =
|
||||||
tsl::hopscotch_map<K, V, fnv1a_hash, std::equal_to<K>, allocator_for<K, V>>;
|
tsl::hopscotch_map<K, V, fnv1a_hash, std::equal_to<K>, ::allocator< std::pair<K, V> >>;
|
||||||
|
|
||||||
template<class K, class V> using tsl_hopscotch_pg_map_fnv1a =
|
template<class K, class V> using tsl_hopscotch_pg_map_fnv1a =
|
||||||
tsl::hopscotch_pg_map<K, V, fnv1a_hash, std::equal_to<K>, allocator_for<K, V>>;
|
tsl::hopscotch_pg_map<K, V, fnv1a_hash, std::equal_to<K>, ::allocator< std::pair<K, V> >>;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -317,10 +317,10 @@ template<class K, class V> using absl_flat_hash_map =
|
|||||||
#ifdef HAVE_TSL_HOPSCOTCH
|
#ifdef HAVE_TSL_HOPSCOTCH
|
||||||
|
|
||||||
template<class K, class V> using tsl_hopscotch_map =
|
template<class K, class V> using tsl_hopscotch_map =
|
||||||
tsl::hopscotch_map<K, V, std::hash<K>, std::equal_to<K>, allocator_for<K, V>>;
|
tsl::hopscotch_map<K, V, std::hash<K>, std::equal_to<K>, ::allocator< std::pair<K, V> >>;
|
||||||
|
|
||||||
template<class K, class V> using tsl_hopscotch_pg_map =
|
template<class K, class V> using tsl_hopscotch_pg_map =
|
||||||
tsl::hopscotch_pg_map<K, V, std::hash<K>, std::equal_to<K>, allocator_for<K, V>>;
|
tsl::hopscotch_pg_map<K, V, std::hash<K>, std::equal_to<K>, ::allocator< std::pair<K, V> >>;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -317,10 +317,10 @@ template<class K, class V> using absl_flat_hash_map =
|
|||||||
#ifdef HAVE_TSL_HOPSCOTCH
|
#ifdef HAVE_TSL_HOPSCOTCH
|
||||||
|
|
||||||
template<class K, class V> using tsl_hopscotch_map =
|
template<class K, class V> using tsl_hopscotch_map =
|
||||||
tsl::hopscotch_map<K, V, std::hash<K>, std::equal_to<K>, allocator_for<K, V>>;
|
tsl::hopscotch_map<K, V, std::hash<K>, std::equal_to<K>, ::allocator< std::pair<K, V> >>;
|
||||||
|
|
||||||
template<class K, class V> using tsl_hopscotch_pg_map =
|
template<class K, class V> using tsl_hopscotch_pg_map =
|
||||||
tsl::hopscotch_pg_map<K, V, std::hash<K>, std::equal_to<K>, allocator_for<K, V>>;
|
tsl::hopscotch_pg_map<K, V, std::hash<K>, std::equal_to<K>, ::allocator< std::pair<K, V> >>;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user