Files
integration/luprex/core/wrap/wrap-unordered-map.hpp

13 lines
353 B
C++
Raw Normal View History

#ifndef WRAP_UNORDERED_MAP_HPP
#define WRAP_UNORDERED_MAP_HPP
#include "two-mallocs.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