1
1
mirror of https://github.com/mawww/kakoune.git synced 2025-01-03 17:28:32 +03:00
kakoune/src/unordered_map.hh

17 lines
279 B
C++
Raw Normal View History

#ifndef unordered_map_hh_INCLUDED
#define unordered_map_hh_INCLUDED
#include "hash.hh"
#include <unordered_map>
namespace Kakoune
{
template<typename Key, typename Value>
using UnorderedMap = std::unordered_map<Key, Value, Hash<Key>>;
}
#endif // unordered_map_hh_INCLUDED