diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-02-05 19:39:04 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-02-13 06:42:25 -0700 |
| commit | 9cb52ca6ce7043ba0ce08d5650ac542075f10685 (patch) | |
| tree | 272ce33129d65e8af6f068fb620ac5a3d33370fc /src/Module.zig | |
| parent | 2654d0c66860d32714e33404554482cbc0cbabf5 (diff) | |
| download | zig-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.zig | 2 |
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"); |
