diff options
| author | Veikka Tuominen <git@vexu.eu> | 2024-01-28 01:04:38 +0200 |
|---|---|---|
| committer | Veikka Tuominen <git@vexu.eu> | 2024-02-01 15:22:36 +0200 |
| commit | a4f27e8987ef3e2388839b6452b9f485ab82e7b7 (patch) | |
| tree | 6420c218896c0f44dea7353b8a9c00b01461c2ec /src/Compilation.zig | |
| parent | b0bea72588c685c1d6439f61d2e842756b5fc496 (diff) | |
| download | zig-a4f27e8987ef3e2388839b6452b9f485ab82e7b7.tar.gz zig-a4f27e8987ef3e2388839b6452b9f485ab82e7b7.zip | |
remove std.io.Mode
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index 237f22df58..4074cc61a4 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -1607,7 +1607,6 @@ pub fn create(gpa: Allocator, arena: Allocator, options: CreateOptions) !*Compil hash.add(options.config.use_lib_llvm); hash.add(options.config.dll_export_fns); hash.add(options.config.is_test); - hash.add(options.config.test_evented_io); hash.addOptionalBytes(options.test_filter); hash.addOptionalBytes(options.test_name_prefix); hash.add(options.skip_linker_dependencies); @@ -2471,7 +2470,6 @@ fn addNonIncrementalStuffToCacheManifest( try addModuleTableToCacheHash(gpa, arena, &man.hash, mod.root_mod, mod.main_mod, .{ .files = man }); // Synchronize with other matching comments: ZigOnlyHashStuff - man.hash.add(comp.config.test_evented_io); man.hash.addOptionalBytes(comp.test_filter); man.hash.addOptionalBytes(comp.test_name_prefix); man.hash.add(comp.skip_linker_dependencies); |
