Add missing hasher and key_type typedefs to C++11 STL containers

This commit is contained in:
William S Fulton 2019-03-12 21:59:03 +00:00
commit f58a6dade3
4 changed files with 14 additions and 5 deletions

View file

@ -75,6 +75,8 @@ namespace std {
typedef const value_type* const_pointer;
typedef value_type& reference;
typedef const value_type& const_reference;
typedef _Hash hasher;
typedef _Compare key_equal;
typedef _Alloc allocator_type;
%traits_swigtype(_Key);