zig

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

commit e8201734677ffcbe45dac12f2439f2de8e38710d (tree)
parent e2e61f329682c88e0a487e049245d865d2df9239
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sun, 26 May 2024 12:07:49 -0700

Compilation: fix sub-compilations given wrong progress node

Diffstat:
Msrc/Compilation.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Compilation.zig b/src/Compilation.zig @@ -5968,7 +5968,7 @@ pub fn updateSubCompilation( const sub_node = prog_node.start(@tagName(misc_task), 0); defer sub_node.end(); - try sub_comp.update(prog_node); + try sub_comp.update(sub_node); } // Look for compilation errors in this sub compilation