diff options
Diffstat (limited to 'src/InternPool.zig')
| -rw-r--r-- | src/InternPool.zig | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/InternPool.zig b/src/InternPool.zig index 368ef51826..2e0722f34c 100644 --- a/src/InternPool.zig +++ b/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"); |
