diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-02-05 18:14:19 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-02-05 18:14:19 -0700 |
| commit | dd54804d8623a6d022dcac63359636b990b926f9 (patch) | |
| tree | f78465d92ca57aef5774eb7393feeb80efdddfa2 /src/Value.zig | |
| parent | 78f15bc7147da4407f1b896ad76f4c19851bd7b9 (diff) | |
| download | zig-dd54804d8623a6d022dcac63359636b990b926f9.tar.gz zig-dd54804d8623a6d022dcac63359636b990b926f9.zip | |
compiler: make Value's self reference non pub
Done in this separate commit to make rebasing on this branch work
better.
Diffstat (limited to 'src/Value.zig')
| -rw-r--r-- | src/Value.zig | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
