From 78f15bc7147da4407f1b896ad76f4c19851bd7b9 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 5 Feb 2024 18:13:07 -0700 Subject: compiler: rename value.zig to Value.zig This commit only does the file rename to be friendlier to version control conflicts. --- src/type.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/type.zig') diff --git a/src/type.zig b/src/type.zig index 9ca2822204..4c7452ed08 100644 --- a/src/type.zig +++ b/src/type.zig @@ -1,6 +1,6 @@ const std = @import("std"); const builtin = @import("builtin"); -const Value = @import("value.zig").Value; +const Value = @import("Value.zig"); const assert = std.debug.assert; const Target = std.Target; const Module = @import("Module.zig"); -- cgit v1.2.3