From f0fdaf32d3b802e9db16a0753d9ff49a8667089b Mon Sep 17 00:00:00 2001 From: Veikka Tuominen Date: Wed, 10 May 2023 16:26:54 +0300 Subject: fix incorrect use of mutable pointers to temporary values --- src/Module.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Module.zig') 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, -- cgit v1.2.3