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

13 lines
320 B
C++
Raw Normal View History

#ifndef WRAP_UNORDERED_SET_HPP
#define WRAP_UNORDERED_SET_HPP
2022-02-28 21:57:54 -05:00
#include "eng-malloc.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