From dd54804d8623a6d022dcac63359636b990b926f9 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 5 Feb 2024 18:14:19 -0700 Subject: [PATCH] compiler: make Value's self reference non pub Done in this separate commit to make rebasing on this branch work better. --- src/Value.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Value.zig b/src/Value.zig index b9afc7805f..68951d57cd 100644 --- a/src/Value.zig +++ b/src/Value.zig @@ -10,7 +10,7 @@ const Module = @import("Module.zig"); const TypedValue = @import("TypedValue.zig"); const Sema = @import("Sema.zig"); const InternPool = @import("InternPool.zig"); -pub const Value = @This(); +const Value = @This(); /// We are migrating towards using this for every Value object. However, many /// values are still represented the legacy way. This is indicated by using