Try mimalloc v3 (#17378)

(For internal tracking: fixes ENG-19852)

---------

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: Jarred-Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Co-authored-by: Kai Tamkun <kai@tamkun.io>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: taylor.fish <contact@taylor.fish>
This commit is contained in:
Jarred Sumner
2025-07-29 18:07:15 -07:00
committed by GitHub
parent f8c2dac836
commit 93f92658b3
38 changed files with 354 additions and 265 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) string {
pub fn toOwnedSlice(self: *MutableString) []u8 {
return self.list.toOwnedSlice(self.allocator) catch bun.outOfMemory(); // TODO
}