aboutsummaryrefslogtreecommitdiff
path: root/src/Module.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-02-05 19:39:04 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-02-13 06:42:25 -0700
commit9cb52ca6ce7043ba0ce08d5650ac542075f10685 (patch)
tree272ce33129d65e8af6f068fb620ac5a3d33370fc /src/Module.zig
parent2654d0c66860d32714e33404554482cbc0cbabf5 (diff)
downloadzig-9cb52ca6ce7043ba0ce08d5650ac542075f10685.tar.gz
zig-9cb52ca6ce7043ba0ce08d5650ac542075f10685.zip
move the cache system from compiler to std lib
Diffstat (limited to 'src/Module.zig')
-rw-r--r--src/Module.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Module.zig b/src/Module.zig
index e4cf0189cc..a129cb0cb6 100644
--- a/src/Module.zig
+++ b/src/Module.zig
@@ -16,7 +16,7 @@ const Ast = std.zig.Ast;
const Module = @This();
const Compilation = @import("Compilation.zig");
-const Cache = @import("Cache.zig");
+const Cache = std.Build.Cache;
const Value = @import("value.zig").Value;
const Type = @import("type.zig").Type;
const TypedValue = @import("TypedValue.zig");