Closed AllanCat closed 4 years ago
In C++, unordered map's insert({initializer_list}) will ignore already existed keys which causing strange mappings, should be using insert_or_assign(key, value) instead.
Awesome! I'll push a release out this evening
In C++, unordered map's insert({initializer_list}) will ignore already existed keys which causing strange mappings, should be using insert_or_assign(key, value) instead.