Files
integration/luprex/core/wrap/wrap-set.hpp
2022-02-28 21:57:54 -05:00

13 lines
231 B
C++

#ifndef WRAP_SET_HPP
#define WRAP_SET_HPP
#include "eng-malloc.hpp"
#include <set>
namespace eng {
template<class K, class C=std::less<K>>
using set = std::set<K, C, eng::allocator<K>>;
} // namespace eng
#endif // WRAP_SET_HPP