2026-02-25 01:58:19 -05:00
|
|
|
#pragma once
|
2022-07-11 02:32:12 -04:00
|
|
|
|
|
|
|
|
#include "eng-malloc.hpp"
|
|
|
|
|
#include "bytell-hash-map.hpp"
|
|
|
|
|
|
|
|
|
|
namespace eng {
|
|
|
|
|
template<class K, class V, class H=std::hash<K>, class E=std::equal_to<K>>
|
|
|
|
|
class bytell_hash_map : public ska::bytell_hash_map<K, V, H, E, eng::allocator<std::pair<const K, V>>>, public eng::opnew {
|
|
|
|
|
using ska::bytell_hash_map<K, V, H, E, eng::allocator<std::pair<const K, V>>>::bytell_hash_map;
|
|
|
|
|
};
|
|
|
|
|
} // namespace eng
|