More work on moving engine into dlmalloc heap

This commit is contained in:
2022-02-25 19:57:23 -05:00
parent 08f6aa2092
commit ff932dba10
52 changed files with 351 additions and 484 deletions

View File

@@ -6,12 +6,7 @@
namespace eng {
template<class T>
using vector = std::vector<T, EngAllocator<T>>;
using vector = std::vector<T, eng::allocator<T>>;
} // namespace eng
namespace drv {
template<class T>
using vector = std::vector<T, DrvAllocator<T>>;
} // namespace drv
#endif // WRAP_VECTOR_HPP