mirror of
https://github.com/boostorg/unordered.git
synced 2025-07-31 03:47:16 +02:00
Add init_type public typedefs
This commit is contained in:
@ -67,6 +67,7 @@ namespace boost {
|
|||||||
using key_type = Key;
|
using key_type = Key;
|
||||||
using mapped_type = T;
|
using mapped_type = T;
|
||||||
using value_type = typename map_types::value_type;
|
using value_type = typename map_types::value_type;
|
||||||
|
using init_type = typename map_types::init_type;
|
||||||
using size_type = std::size_t;
|
using size_type = std::size_t;
|
||||||
using difference_type = std::ptrdiff_t;
|
using difference_type = std::ptrdiff_t;
|
||||||
using hasher = Hash;
|
using hasher = Hash;
|
||||||
|
@ -49,6 +49,7 @@ namespace boost {
|
|||||||
public:
|
public:
|
||||||
using key_type = Key;
|
using key_type = Key;
|
||||||
using value_type = typename set_types::value_type;
|
using value_type = typename set_types::value_type;
|
||||||
|
using init_type = typename set_types::init_type;
|
||||||
using size_type = std::size_t;
|
using size_type = std::size_t;
|
||||||
using difference_type = std::ptrdiff_t;
|
using difference_type = std::ptrdiff_t;
|
||||||
using hasher = Hash;
|
using hasher = Hash;
|
||||||
|
Reference in New Issue
Block a user