#ifndef unordered_map_hh_INCLUDED #define unordered_map_hh_INCLUDED #include "hash.hh" #include "memory.hh" #include #include namespace Kakoune { template::domain()> using UnorderedMap = std::unordered_map, std::equal_to, Allocator, domain>>; template::domain()> using UnorderedSet = std::unordered_set, std::equal_to, Allocator>; } #endif // unordered_map_hh_INCLUDED