Yet more work on eng::malloc

This commit is contained in:
2022-03-02 14:52:51 -05:00
parent 7cd8eb0a43
commit cf102a6250
25 changed files with 114 additions and 59 deletions

View File

@@ -6,7 +6,9 @@
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>>;
class unordered_set : public std::unordered_set<K, H, E, eng::allocator<K>>, public eng::opnew {
using std::unordered_set<K, H, E, eng::allocator<K>>::unordered_set;
};
} // namespace eng
#endif // WRAP_UNORDERED_SET_HPP