Add init_type public typedefs

This commit is contained in:
Christian Mazakas
2022-10-20 14:58:38 -07:00
parent 99ad45ed77
commit 59f4da0a47
2 changed files with 2 additions and 0 deletions

View File

@ -67,6 +67,7 @@ namespace boost {
using key_type = Key;
using mapped_type = T;
using value_type = typename map_types::value_type;
using init_type = typename map_types::init_type;
using size_type = std::size_t;
using difference_type = std::ptrdiff_t;
using hasher = Hash;

View File

@ -49,6 +49,7 @@ namespace boost {
public:
using key_type = Key;
using value_type = typename set_types::value_type;
using init_type = typename set_types::init_type;
using size_type = std::size_t;
using difference_type = std::ptrdiff_t;
using hasher = Hash;