aboutsummaryrefslogtreecommitdiff
path: root/lib/std/array_hash_map.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2023-10-26 02:11:54 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2023-10-26 21:45:58 -0400
commit98cd3782087d198425cfa19906f43d53b8106837 (patch)
treeb4527ce34088a73402bc9f269346abc3ab50c988 /lib/std/array_hash_map.zig
parent3faa4ea9594f058da7522808ffc9587b77ac94a6 (diff)
downloadzig-98cd3782087d198425cfa19906f43d53b8106837.tar.gz
zig-98cd3782087d198425cfa19906f43d53b8106837.zip
x86_64: fix behavior of `getValue`
Old behavior renamed to `getValueIfFree`.
Diffstat (limited to 'lib/std/array_hash_map.zig')
-rw-r--r--lib/std/array_hash_map.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/std/array_hash_map.zig b/lib/std/array_hash_map.zig
index 13ade92ceb..75a86f63f6 100644
--- a/lib/std/array_hash_map.zig
+++ b/lib/std/array_hash_map.zig
@@ -2294,8 +2294,6 @@ test "popOrNull" {
}
test "reIndex" {
- if (@import("builtin").zig_backend == .stage2_x86_64) return error.SkipZigTest;
-
var map = ArrayHashMap(i32, i32, AutoContext(i32), true).init(std.testing.allocator);
defer map.deinit();