mirror of
https://github.com/msgpack/msgpack-c
synced 2026-06-08 16:11:40 +00:00
9725bac5c4
In the std::map adaptor, remove the complicated iterator/insert code and go with the cpp11/unordered_map.hpp approach instead. Makes the code more consistent, avoids an extra copy, and the previous complexity was unnecessary since std::map only maps to a single element per key, unlike std::multimap.