Dep/Jemalloc: Update to Jemalloc 5.2.1

This commit is contained in:
jackpoz
2019-10-27 17:42:15 +01:00
parent 267bdde323
commit 89cb584780
41 changed files with 1208 additions and 338 deletions

View File

@@ -128,14 +128,14 @@ operator delete(void *ptr, std::size_t size) noexcept {
if (unlikely(ptr == nullptr)) {
return;
}
je_sdallocx(ptr, size, /*flags=*/0);
je_sdallocx_noflags(ptr, size);
}
void operator delete[](void *ptr, std::size_t size) noexcept {
if (unlikely(ptr == nullptr)) {
return;
}
je_sdallocx(ptr, size, /*flags=*/0);
je_sdallocx_noflags(ptr, size);
}
#endif // __cpp_sized_deallocation