authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-02-05 18:14:19-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-02-05 18:14:19-07:00
logdd54804d8623a6d022dcac63359636b990b926f9
treef78465d92ca57aef5774eb7393feeb80efdddfa2
parent78f15bc7147da4407f1b896ad76f4c19851bd7b9

compiler: make Value's self reference non pub

Done in this separate commit to make rebasing on this branch work better.

1 files changed, 1 insertions(+), 1 deletions(-)

src/Value.zig+1-1
...@@ -10,7 +10,7 @@ const Module = @import("Module.zig");...@@ -10,7 +10,7 @@ const Module = @import("Module.zig");
10const TypedValue = @import("TypedValue.zig");10const TypedValue = @import("TypedValue.zig");
11const Sema = @import("Sema.zig");11const Sema = @import("Sema.zig");
12const InternPool = @import("InternPool.zig");12const InternPool = @import("InternPool.zig");
13pub const Value = @This();13const Value = @This();
1414
15/// We are migrating towards using this for every Value object. However, many15/// We are migrating towards using this for every Value object. However, many
16/// values are still represented the legacy way. This is indicated by using16/// values are still represented the legacy way. This is indicated by using