Files
integration/luprex/core/wrap/wrap-unordered-map.hpp
2022-02-28 21:57:54 -05:00

13 lines
352 B
C++

#ifndef WRAP_UNORDERED_MAP_HPP
#define WRAP_UNORDERED_MAP_HPP
#include "eng-malloc.hpp"
#include <unordered_map>
namespace eng {
template<class K, class V, class H=std::hash<K>, class E=std::equal_to<K>>
using unordered_map = std::unordered_map<K, V, H, E, eng::allocator<std::pair<const K, V>>>;
} // namespace eng
#endif // WRAP_UNORDERED_MAP_HPP