mirror of
https://github.com/boostorg/container.git
synced 2025-08-01 05:24:31 +02:00
Add missing typenames for bucket_traits y bucket_type
This commit is contained in:
@@ -271,8 +271,8 @@ struct hash_table_types
|
|||||||
< Allocator, ValHash, ValEqual
|
< Allocator, ValHash, ValEqual
|
||||||
, options_type::store_hash
|
, options_type::store_hash
|
||||||
>::type Icont;
|
>::type Icont;
|
||||||
typedef Icont::bucket_type bucket_type;
|
typedef typename Icont::bucket_type bucket_type;
|
||||||
typedef Icont::bucket_traits bucket_traits;
|
typedef typename Icont::bucket_traits bucket_traits;
|
||||||
typedef dtl::node_alloc_holder
|
typedef dtl::node_alloc_holder
|
||||||
<Allocator, Icont> AllocHolder;
|
<Allocator, Icont> AllocHolder;
|
||||||
|
|
||||||
@@ -310,8 +310,8 @@ class hash_table
|
|||||||
typedef dtl::allocator_node_destroyer<NodeAlloc> Destroyer;
|
typedef dtl::allocator_node_destroyer<NodeAlloc> Destroyer;
|
||||||
typedef typename AllocHolder::alloc_version alloc_version;
|
typedef typename AllocHolder::alloc_version alloc_version;
|
||||||
|
|
||||||
typedef Icont::bucket_type bucket_type;
|
typedef typename Icont::bucket_type bucket_type;
|
||||||
typedef Icont::bucket_traits bucket_traits;
|
typedef typename Icont::bucket_traits bucket_traits;
|
||||||
typedef typename hash_table_types
|
typedef typename hash_table_types
|
||||||
<KeyOfValue, KeyHash, KeyEqual, Allocator, Options>
|
<KeyOfValue, KeyHash, KeyEqual, Allocator, Options>
|
||||||
::bucket_holder_t bucket_holder_t;
|
::bucket_holder_t bucket_holder_t;
|
||||||
|
Reference in New Issue
Block a user