Commit ac6f9eb2ca

Andrew Kelley <andrew@ziglang.org>
2023-09-24 02:10:19
InternPool: store_hash=false for FieldMap
This is something I wanted to do a long time ago but was blocked by #10618 which is now solved.
1 parent cc69315
Changed files (1)
src/InternPool.zig
@@ -54,9 +54,7 @@ string_table: std.HashMapUnmanaged(
     std.hash_map.default_max_load_percentage,
 ) = .{},
 
-/// TODO: after https://github.com/ziglang/zig/issues/10618 is solved,
-/// change store_hash to false.
-const FieldMap = std.ArrayHashMapUnmanaged(void, void, std.array_hash_map.AutoContext(void), true);
+const FieldMap = std.ArrayHashMapUnmanaged(void, void, std.array_hash_map.AutoContext(void), false);
 
 const builtin = @import("builtin");
 const std = @import("std");