diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-06-22 16:10:17 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-06-22 22:59:56 -0400 |
| commit | 0fcd59eadae468284943895f50bc9fc6d1924154 (patch) | |
| tree | 45e95f4bf8057a80d18dc78f6fea00ac57768455 /src/Value.zig | |
| parent | 6026bbd0adb445a0edd6defb0b378937dcce7a9b (diff) | |
| download | zig-0fcd59eadae468284943895f50bc9fc6d1924154.tar.gz zig-0fcd59eadae468284943895f50bc9fc6d1924154.zip | |
rename src/Module.zig to src/Zcu.zig
This patch is a pure rename plus only changing the file path in
`@import` sites, so it is expected to not create version control
conflicts, even when rebasing.
Diffstat (limited to 'src/Value.zig')
| -rw-r--r-- | src/Value.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Value.zig b/src/Value.zig index 0eb0364986..5719ed3689 100644 --- a/src/Value.zig +++ b/src/Value.zig @@ -6,7 +6,8 @@ const BigIntConst = std.math.big.int.Const; const BigIntMutable = std.math.big.int.Mutable; const Target = std.Target; const Allocator = std.mem.Allocator; -const Zcu = @import("Module.zig"); +const Zcu = @import("Zcu.zig"); +/// Deprecated. const Module = Zcu; const Sema = @import("Sema.zig"); const InternPool = @import("InternPool.zig"); |
