13 lines
321 B
C++
13 lines
321 B
C++
#ifndef WRAP_UNORDERED_SET_HPP
|
|
#define WRAP_UNORDERED_SET_HPP
|
|
|
|
#include "two-mallocs.hpp"
|
|
#include <unordered_set>
|
|
|
|
namespace eng {
|
|
template<class K, class H=std::hash<K>, class E=std::equal_to<K>>
|
|
using unordered_set = std::unordered_set<K, H, E, eng::allocator<K>>;
|
|
} // namespace eng
|
|
|
|
#endif // WRAP_UNORDERED_SET_HPP
|