Temporary repository used to save branch code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
282 B

#pragma once
#include <memory>
#include <vector>
#include <list>
// #include <mimalloc-override.h>
#include <mimalloc.h>
template <typename T>
using stl_vector_mp = std::vector<T, mi_stl_allocator<T>>;
template <typename T>
using stl_list_mp = std::list<T, mi_stl_allocator<T>>;