Migrated engine to using dlmalloc through eng::
This commit is contained in:
@@ -23,7 +23,7 @@ using equal_to = std::equal_to<T>;
|
||||
template<class A, class B>
|
||||
using pair = std::pair<A, B>;
|
||||
template<class K, class V, class H=std::hash<K>, class E=std::equal_to<K>>
|
||||
using unordered_map = std::unordered_map<K, V, H, E, std::allocator<std::pair<const K, V>>>;
|
||||
using unordered_map = std::unordered_map<K, V, H, E, DrvAllocator<std::pair<const K, V>>>;
|
||||
} // namespace drv
|
||||
|
||||
#endif // WRAP_UNORDERED_MAP_HPP
|
||||
|
||||
Reference in New Issue
Block a user