Migrated engine to using dlmalloc through eng::
This commit is contained in:
@@ -19,7 +19,7 @@ using less = std::less<T>;
|
||||
template<class A, class B>
|
||||
using pair = std::pair<A, B>;
|
||||
template<class K, class V, class C=std::less<K>>
|
||||
using map = std::map<K, V, C, std::allocator<std::pair<const K, V>>>;
|
||||
using map = std::map<K, V, C, DrvAllocator<std::pair<const K, V>>>;
|
||||
} // namespace drv
|
||||
|
||||
#endif // WRAP_MAP_HPP
|
||||
|
||||
Reference in New Issue
Block a user