mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
@@ -106,9 +106,6 @@ pub const MutableString = struct {
|
||||
try self.list.ensureUnusedCapacity(self.allocator, amount);
|
||||
}
|
||||
|
||||
pub fn deinit(self: *MutableString) !void {
|
||||
self.list.deinit(self.allocator);
|
||||
}
|
||||
pub fn appendChar(self: *MutableString, char: u8) callconv(.Inline) !void {
|
||||
try self.list.append(self.allocator, char);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user