diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-07-04 20:12:05 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-04 20:12:05 -0400 |
| commit | 790b8428a26457e7ed9ea20485b9d3085011b989 (patch) | |
| tree | 3d27f81e31d73af526e8a972504325fa1cb0d9e1 /src/mutable_value.zig | |
| parent | de61540c2d049b0774dd9c5e14aa8f65ed1c25ed (diff) | |
| parent | cda6f552d5d4a996df69981dac7c9d9b3c066537 (diff) | |
| download | zig-790b8428a26457e7ed9ea20485b9d3085011b989.tar.gz zig-790b8428a26457e7ed9ea20485b9d3085011b989.zip | |
Merge pull request #20494 from mlugg/the-great-decl-split
refactors ad infinitum
Diffstat (limited to 'src/mutable_value.zig')
| -rw-r--r-- | src/mutable_value.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mutable_value.zig b/src/mutable_value.zig index 77c0827691..1806e6ba19 100644 --- a/src/mutable_value.zig +++ b/src/mutable_value.zig @@ -3,7 +3,7 @@ const assert = std.debug.assert; const Allocator = std.mem.Allocator; const Zcu = @import("Zcu.zig"); const InternPool = @import("InternPool.zig"); -const Type = @import("type.zig").Type; +const Type = @import("Type.zig"); const Value = @import("Value.zig"); /// We use a tagged union here because while it wastes a few bytes for some tags, having a fixed |
