diff options
| author | mlugg <mlugg@mlugg.co.uk> | 2024-06-27 23:21:44 +0100 |
|---|---|---|
| committer | mlugg <mlugg@mlugg.co.uk> | 2024-07-04 21:01:40 +0100 |
| commit | bc8cd135987c7dc7419d034ba31178331d606cfa (patch) | |
| tree | d87db0aced8e650dd50e997cacb0b7933715d130 /src/Compilation.zig | |
| parent | d9f1a952b8b0e19aafcf568b35cc220adbb4a7b5 (diff) | |
| download | zig-bc8cd135987c7dc7419d034ba31178331d606cfa.tar.gz zig-bc8cd135987c7dc7419d034ba31178331d606cfa.zip | |
compiler: rename AnalSubject to AnalUnit
I meant to call it this originally, I just got mixed up -- sorry!
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index 343b22d2b1..e0bbdd2e03 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -3494,7 +3494,7 @@ fn processOneJob(comp: *Compilation, job: Job, prog_node: std.Progress.Node) !vo .{@errorName(err)}, )); decl.analysis = .codegen_failure; - try module.retryable_failures.append(gpa, InternPool.AnalSubject.wrap(.{ .decl = decl_index })); + try module.retryable_failures.append(gpa, InternPool.AnalUnit.wrap(.{ .decl = decl_index })); }; }, .analyze_mod => |pkg| { |
