From a4f27e8987ef3e2388839b6452b9f485ab82e7b7 Mon Sep 17 00:00:00 2001 From: Veikka Tuominen Date: Sun, 28 Jan 2024 01:04:38 +0200 Subject: remove std.io.Mode --- src/Compilation.zig | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/Compilation.zig') 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); -- cgit v1.2.3