25 #ifndef _JIT_COMPILER2_ALLOC_UNORDERED_MAP
26 #define _JIT_COMPILER2_ALLOC_UNORDERED_MAP
28 #include <unordered_map>
40 class Hash = std::hash<Key>,
41 class KeyEqual = std::equal_to<Key>
43 typedef std::unordered_map<Key, T, Hash, KeyEqual, Allocator<std::pair<const Key, T> > >
type;
49 class Hash = std::hash<Key>,
50 class KeyEqual = std::equal_to<Key>
52 typedef std::unordered_multimap<Key, T, Hash, KeyEqual, Allocator<std::pair<const Key, T> > >
type;
std::unordered_multimap< Key, T, Hash, KeyEqual, Allocator< std::pair< const Key, T > > > type
std::unordered_map< Key, T, Hash, KeyEqual, Allocator< std::pair< const Key, T > > > type