diff options
| author | Veikka Tuominen <git@vexu.eu> | 2023-05-13 12:52:16 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-13 12:52:16 +0300 |
| commit | 68bacad8047df050c8ab6bf52c2921f482647d57 (patch) | |
| tree | 9b428c397ee0173b670dfbe34f4c9330dc257bb7 /src/Module.zig | |
| parent | 6f418c11e1ad1150fbdb002cfe1be92bda4e93cb (diff) | |
| parent | 5aa9628de3c6637f45b9d8cf8cbd19c422a74f6f (diff) | |
| download | zig-68bacad8047df050c8ab6bf52c2921f482647d57.tar.gz zig-68bacad8047df050c8ab6bf52c2921f482647d57.zip | |
Merge pull request #15643 from Vexu/fixes
make `@call` compile errors match regular calls
Diffstat (limited to 'src/Module.zig')
| -rw-r--r-- | src/Module.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Module.zig b/src/Module.zig index b0c18def78..6d1a5acb09 100644 --- a/src/Module.zig +++ b/src/Module.zig @@ -6098,7 +6098,7 @@ pub const PeerTypeCandidateSrc = union(enum) { none: void, /// When we want to know the the src of candidate i, look up at /// index i in this slice - override: []?LazySrcLoc, + override: []const ?LazySrcLoc, /// resolvePeerTypes originates from a @TypeOf(...) call typeof_builtin_call_node_offset: i32, |
