diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-12-13 23:59:02 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-01-01 17:51:19 -0700 |
| commit | 769dea6e37ffef32f0972a0b958ff2ea38db6854 (patch) | |
| tree | 788ad21a34b14b9132851d5bcde33603c2c61abf /src/Module.zig | |
| parent | 33cdf33b95676dca9f91216e0f8742f9cf7e84fb (diff) | |
| download | zig-769dea6e37ffef32f0972a0b958ff2ea38db6854.tar.gz zig-769dea6e37ffef32f0972a0b958ff2ea38db6854.zip | |
Compilation: redo whole vs incremental logic in create and update
Diffstat (limited to 'src/Module.zig')
| -rw-r--r-- | src/Module.zig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Module.zig b/src/Module.zig index aa107ea3f7..e32bad7295 100644 --- a/src/Module.zig +++ b/src/Module.zig @@ -52,8 +52,6 @@ comptime { gpa: Allocator, comp: *Compilation, -/// Where build artifacts and incremental compilation metadata serialization go. -zig_cache_artifact_directory: Compilation.Directory, /// Pointer to externally managed resource. root_mod: *Package.Module, /// Normally, `main_mod` and `root_mod` are the same. The exception is `zig test`, in which @@ -2508,7 +2506,6 @@ pub fn deinit(mod: *Module) void { emit_h.failed_decls.deinit(gpa); emit_h.decl_table.deinit(gpa); emit_h.allocated_emit_h.deinit(gpa); - gpa.destroy(emit_h); } for (mod.failed_files.values()) |value| { |
