From c1af137336bc784ca15cdcc4af385e11a56ba9bb Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Sun, 27 Jul 2025 12:34:10 -0400 Subject: [PATCH] Clean up some unnecessary comments --- src/base/Ident.zig | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/base/Ident.zig b/src/base/Ident.zig index e80c337f09..67ac1016cd 100644 --- a/src/base/Ident.zig +++ b/src/base/Ident.zig @@ -281,7 +281,7 @@ pub const Store = struct { ) std.mem.Allocator.Error!*const Store { // First, write the Store struct itself const offset_self = try writer.appendAlloc(allocator, Store); - + // Then serialize the sub-structures and update the struct offset_self.* = .{ .interner = (try self.interner.serialize(allocator, writer)).*, @@ -294,10 +294,7 @@ pub const Store = struct { /// Add the given offset to the memory addresses of all pointers in `self`. pub fn relocate(self: *Store, offset: isize) void { - // Relocate the SmallStringInterner self.interner.relocate(offset); - - // Relocate the attributes SafeList self.attributes.relocate(offset); } };