| author | |
| committer | |
| log | 96e162492f32df28e9b38f31ff558d63f59e23a0 |
| tree | b2c50129289936e326f9913945b0c73276193c60 |
| parent | 23f74f55c3bab1fb1128e92142b2f676eabe75dd |
1 files changed, 2 insertions(+), 2 deletions(-)
json.zig+2-2| ... | @@ -454,8 +454,8 @@ pub const Document = struct { | ... | @@ -454,8 +454,8 @@ pub const Document = struct { |
| 454 | extras: []const u8, | 454 | extras: []const u8, |
| 455 | root: ValueIndex, | 455 | root: ValueIndex, |
| 456 | 456 | ||
| 457 | pub fn deinit(doc: *const Document, alloc: std.mem.Allocator) void { | 457 | pub fn deinit(this: *const Document, alloc: std.mem.Allocator) void { |
| 458 | alloc.free(doc.extras); | 458 | alloc.free(this.extras); |
| 459 | } | 459 | } |
| 460 | }; | 460 | }; |
| 461 | 461 |