authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-07-09 18:46:58-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-07-09 20:01:15-07:00
logdce08d9a5714a98510bdd08994b19f43ef8499d9
tree2dfc9099a52693009fadaa696c0bd2805a184abc
parent55bced9563daba677bd71c3f93df774092fb2205

std.Build.Cache: remove debugging remnants

oops!

1 files changed, 1 insertions(+), 5 deletions(-)

lib/std/Build/Cache.zig+1-5
...@@ -690,11 +690,7 @@ pub const Manifest = struct {...@@ -690,11 +690,7 @@ pub const Manifest = struct {
690 const size = iter.next() orelse return error.InvalidFormat;690 const size = iter.next() orelse return error.InvalidFormat;
691 const inode = iter.next() orelse return error.InvalidFormat;691 const inode = iter.next() orelse return error.InvalidFormat;
692 const mtime_nsec_str = iter.next() orelse return error.InvalidFormat;692 const mtime_nsec_str = iter.next() orelse return error.InvalidFormat;
693 const digest_str = iter.next() orelse {693 const digest_str = iter.next() orelse return error.InvalidFormat;
694 std.debug.print("contents:\n{s}\n", .{file_contents});
695 @breakpoint();
696 return error.InvalidFormat;
697 };
698 const prefix_str = iter.next() orelse return error.InvalidFormat;694 const prefix_str = iter.next() orelse return error.InvalidFormat;
699 const file_path = iter.rest();695 const file_path = iter.rest();
700696