Migrated engine to using dlmalloc through eng::

This commit is contained in:
2022-02-24 02:17:41 -05:00
parent acc00289fb
commit f467944095
61 changed files with 631 additions and 590 deletions

View File

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