Revert "Try mimalloc v3 (#17378)"

This reverts commit 93f92658b3.
This commit is contained in:
Kai Tamkun
2025-08-06 19:59:39 -07:00
parent 4deeadd53a
commit c5bc9f4e99
38 changed files with 267 additions and 362 deletions

View File

@@ -240,7 +240,7 @@ pub inline fn lenI(self: *MutableString) i32 {
return @as(i32, @intCast(self.list.items.len));
}
pub fn toOwnedSlice(self: *MutableString) []u8 {
pub fn toOwnedSlice(self: *MutableString) string {
return self.list.toOwnedSlice(self.allocator) catch bun.outOfMemory(); // TODO
}