Skip to content

Commit

Permalink
Compilation: fix rebase conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrk committed Jul 12, 2024
1 parent 5a34e6c commit 67e3e49
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Compilation.zig
Original file line number Diff line number Diff line change
Expand Up @@ -2180,7 +2180,8 @@ pub fn update(comp: *Compilation, main_progress_node: std.Progress.Node) !void {
comp.astgen_work_queue.writeItemAssumeCapacity(file_index);
}
if (comp.file_system_inputs) |fsi| {
for (zcu.import_table.values()) |file| {
for (zcu.import_table.values()) |file_index| {
const file = zcu.fileByIndex(file_index);
try comp.appendFileSystemInput(fsi, file.mod.root, file.sub_file_path);
}
}
Expand Down

0 comments on commit 67e3e49

Please sign in to comment.