From ab14beeaadc4bae0dfcad1bf798f6f2bc4bb8aaf Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 4 Aug 2026 17:00:10 -0700 Subject: [PATCH] Maker.ScannedConfig: update for changed Configuration types fixes invisible merge conflict from 9243d1d975c93f68c9c73a6d7a235784e04b3087 --- lib/compiler/Maker/ScannedConfig.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/compiler/Maker/ScannedConfig.zig b/lib/compiler/Maker/ScannedConfig.zig index cc8c27a35b78b745c4a4606c1a386ee576feffa5..ed5661851351afb4c9a57b8723e2f4d13cd895ba 100644 --- a/lib/compiler/Maker/ScannedConfig.zig +++ b/lib/compiler/Maker/ScannedConfig.zig @@ -43,10 +43,10 @@ pub fn print(sc: *const ScannedConfig, w: *Writer) Writer.Error!void { { var tf = try s.beginTupleField("path_deps", .{}); - for (c.path_deps_base, c.path_deps_sub) |base, sub| { + for (c.path_deps) |path_dep| { var sf = try tf.beginStructField(.{}); - try sf.field("base", @tagName(base), .{}); - try sf.field("sub", sub.slice(c), .{}); + try sf.field("base", @tagName(path_dep.flags.base), .{}); + try sf.field("sub", path_dep.sub.slice(c), .{}); try sf.end(); } try tf.end(); -- 2.54.0