zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit dce08d9a5714a98510bdd08994b19f43ef8499d9 (tree)
parent 55bced9563daba677bd71c3f93df774092fb2205
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Wed,  9 Jul 2025 18:46:58 -0700

std.Build.Cache: remove debugging remnants

oops!

Diffstat:
Mlib/std/Build/Cache.zig | 6+-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/lib/std/Build/Cache.zig b/lib/std/Build/Cache.zig @@ -690,11 +690,7 @@ pub const Manifest = struct { const size = iter.next() orelse return error.InvalidFormat; const inode = iter.next() orelse return error.InvalidFormat; const mtime_nsec_str = iter.next() orelse return error.InvalidFormat; - const digest_str = iter.next() orelse { - std.debug.print("contents:\n{s}\n", .{file_contents}); - @breakpoint(); - return error.InvalidFormat; - }; + const digest_str = iter.next() orelse return error.InvalidFormat; const prefix_str = iter.next() orelse return error.InvalidFormat; const file_path = iter.rest();