1 #ifndef ZSERIO_PMR_MAP_H_INC
2 #define ZSERIO_PMR_MAP_H_INC
5 #include <memory_resource>
15 template <
typename KEY,
typename T,
typename COMPARE = std::less<KEY>>
16 using Map = std::map<KEY, T, COMPARE, std::pmr::polymorphic_allocator<std::pair<const KEY, T>>>;
std::map< KEY, T, COMPARE, std::pmr::polymorphic_allocator< std::pair< const KEY, T > >> Map