summaryrefslogtreecommitdiff
path: root/src/unordered_map.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/unordered_map.hh')
-rw-r--r--src/unordered_map.hh23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/unordered_map.hh b/src/unordered_map.hh
deleted file mode 100644
index 23897c85..00000000
--- a/src/unordered_map.hh
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef unordered_map_hh_INCLUDED
-#define unordered_map_hh_INCLUDED
-
-#include "hash.hh"
-#include "memory.hh"
-
-#include <unordered_map>
-#include <unordered_set>
-
-namespace Kakoune
-{
-
-template<typename Key, typename Value, MemoryDomain domain = TypeDomain<Key>::domain()>
-using UnorderedMap = std::unordered_map<Key, Value, Hash<Key>, std::equal_to<Key>,
- Allocator<std::pair<const Key, Value>, domain>>;
-
-template<typename Key, MemoryDomain domain = TypeDomain<Key>::domain()>
-using UnorderedSet = std::unordered_set<Key, Hash<Key>, std::equal_to<Key>,
- Allocator<Key, domain>>;
-
-}
-
-#endif // unordered_map_hh_INCLUDED