2026-02-25 01:58:19 -05:00
|
|
|
#pragma once
|
2022-02-23 23:08:28 -05:00
|
|
|
|
2022-02-28 21:57:54 -05:00
|
|
|
#include "eng-malloc.hpp"
|
2022-02-23 23:08:28 -05:00
|
|
|
#include <unordered_set>
|
|
|
|
|
|
|
|
|
|
namespace eng {
|
|
|
|
|
template<class K, class H=std::hash<K>, class E=std::equal_to<K>>
|
2022-03-02 14:52:51 -05:00
|
|
|
class unordered_set : public std::unordered_set<K, H, E, eng::allocator<K>>, public eng::opnew {
|
|
|
|
|
using std::unordered_set<K, H, E, eng::allocator<K>>::unordered_set;
|
|
|
|
|
};
|
2022-02-23 23:08:28 -05:00
|
|
|
} // namespace eng
|