diff options
Diffstat (limited to 'src/string_mutable.zig')
-rw-r--r-- | src/string_mutable.zig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/string_mutable.zig b/src/string_mutable.zig index 610f35a0a..7e9ea5aa6 100644 --- a/src/string_mutable.zig +++ b/src/string_mutable.zig @@ -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); } |