2022-02-23 23:08:28 -05:00
|
|
|
#ifndef WRAP_SET_HPP
|
|
|
|
|
#define WRAP_SET_HPP
|
|
|
|
|
|
2022-02-28 21:57:54 -05:00
|
|
|
#include "eng-malloc.hpp"
|
2022-02-23 23:08:28 -05:00
|
|
|
#include <set>
|
|
|
|
|
|
|
|
|
|
namespace eng {
|
|
|
|
|
template<class K, class C=std::less<K>>
|
2022-02-25 19:57:23 -05:00
|
|
|
using set = std::set<K, C, eng::allocator<K>>;
|
2022-02-23 23:08:28 -05:00
|
|
|
} // namespace eng
|
|
|
|
|
|
|
|
|
|
#endif // WRAP_SET_HPP
|