Dep/Jemalloc: Update to Jemalloc 5.2.1

(cherry picked from commit 89cb584780)
This commit is contained in:
jackpoz
2019-10-27 17:42:15 +01:00
committed by Shauren
parent 22987b705b
commit fa4830af80
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