compiler: rename value.zig to Value.zig

This commit only does the file rename to be friendlier to version
control conflicts.
This commit is contained in:
Andrew Kelley
2024-02-05 18:13:07 -07:00
parent 2de5e31721
commit 78f15bc714
29 changed files with 28 additions and 28 deletions

View File

@@ -19,7 +19,7 @@ const Module = Zcu;
const Zcu = @This();
const Compilation = @import("Compilation.zig");
const Cache = std.Build.Cache;
const Value = @import("value.zig").Value;
const Value = @import("Value.zig");
const Type = @import("type.zig").Type;
const TypedValue = @import("TypedValue.zig");
const Package = @import("Package.zig");