diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-02-03 14:20:49 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-03 14:20:49 -0500 |
| commit | 60935decd318498529a016eeb1379d943a7e830d (patch) | |
| tree | 666ab5ab7608ac30307b2ecaf3f2c4ed0720ba92 /src/Compilation.zig | |
| parent | 4c7f8286d53bf3df22b1a4596cfdd38d3736240e (diff) | |
| parent | 81c27c74bc8ccc8087b75c5d4eb1b350ad907cd0 (diff) | |
| download | zig-60935decd318498529a016eeb1379d943a7e830d.tar.gz zig-60935decd318498529a016eeb1379d943a7e830d.zip | |
Merge pull request #14523 from ziglang/zon
introduce Zig Object Notation and use it for the build manifest file (build.zig.zon)
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 7d42d3b610..e09b8f18ab 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -385,7 +385,7 @@ pub const AllErrors = struct { count: u32 = 1, /// Does not include the trailing newline. source_line: ?[]const u8, - notes: []Message = &.{}, + notes: []const Message = &.{}, reference_trace: []Message = &.{}, /// Splits the error message up into lines to properly indent them |
