authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-08-04 17:00:10-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2026-08-04 17:00:10-07:00
logab14beeaadc4bae0dfcad1bf798f6f2bc4bb8aaf
treef7b54f65d52da73a8f7fb3f0e5e24f960d37c1e0
parent78f3aa0b179091fd72f0a2627aea92fd75b5f649

Maker.ScannedConfig: update for changed Configuration types

fixes invisible merge conflict from 9243d1d975c93f68c9c73a6d7a235784e04b3087

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

lib/compiler/Maker/ScannedConfig.zig+3-3
......@@ -43,10 +43,10 @@ pub fn print(sc: *const ScannedConfig, w: *Writer) Writer.Error!void {
4343
4444 {
4545 var tf = try s.beginTupleField("path_deps", .{});
46 for (c.path_deps_base, c.path_deps_sub) |base, sub| {
46 for (c.path_deps) |path_dep| {
4747 var sf = try tf.beginStructField(.{});
48 try sf.field("base", @tagName(base), .{});
49 try sf.field("sub", sub.slice(c), .{});
48 try sf.field("base", @tagName(path_dep.flags.base), .{});
49 try sf.field("sub", path_dep.sub.slice(c), .{});
5050 try sf.end();
5151 }
5252 try tf.end();