fix incorrect use of mutable pointers to temporary values

This commit is contained in:
Veikka Tuominen
2023-05-10 16:26:54 +03:00
parent 67afd2a470
commit f0fdaf32d3
4 changed files with 4 additions and 4 deletions

View File

@@ -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,