struct DefaultAllocator { void* allocate(size_t n) { return malloc(n); } void deallocate(void* p) { free(p); } }; typedef ...
確定! 回上一頁