mirror of
https://github.com/FEX-Emu/FEX.git
synced 2024-12-15 01:49:00 +00:00
fextl: add unordered_multimap
This commit is contained in:
parent
88dba60bee
commit
e48fb1850e
@ -6,4 +6,7 @@
|
||||
namespace fextl {
|
||||
template<class Key, class T, class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>, class Allocator = fextl::FEXAlloc<std::pair<const Key, T>>>
|
||||
using unordered_map = std::unordered_map<Key, T, Hash, KeyEqual, Allocator>;
|
||||
|
||||
template<class Key, class T, class Hash = std::hash<Key>, class KeyEqual = std::equal_to<Key>, class Allocator = fextl::FEXAlloc<std::pair<const Key, T>>>
|
||||
using unordered_multimap = std::unordered_multimap<Key, T, Hash, KeyEqual, Allocator>;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user