Yet more work on eng::malloc
This commit is contained in:
@@ -6,7 +6,9 @@
|
||||
|
||||
namespace eng {
|
||||
template<class K, class C=std::less<K>>
|
||||
using set = std::set<K, C, eng::allocator<K>>;
|
||||
class set : public std::set<K, C, eng::allocator<K>>, public eng::opnew {
|
||||
using std::set<K, C, eng::allocator<K>>::set;
|
||||
};
|
||||
} // namespace eng
|
||||
|
||||
#endif // WRAP_SET_HPP
|
||||
|
||||
Reference in New Issue
Block a user