aboutsummaryrefslogtreecommitdiff
path: root/lib/std/array_hash_map.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-04-20 17:16:32 -0700
committerAndrew Kelley <andrew@ziglang.org>2022-04-20 17:18:06 -0700
commit4f527e5d36f66a83ff6a263a03f16e2c4d049f1e (patch)
tree7ea75f706f934a32f0c7dd9b3ec4ca392855fe1d /lib/std/array_hash_map.zig
parent99112b63bdeec512e164f289556b24fa1554a775 (diff)
downloadzig-4f527e5d36f66a83ff6a263a03f16e2c4d049f1e.tar.gz
zig-4f527e5d36f66a83ff6a263a03f16e2c4d049f1e.zip
std: fix missing hash map safety
There was a missing compile error for calling ensureUnusedCapacity without a Context in the case that the Context is non-void.
Diffstat (limited to 'lib/std/array_hash_map.zig')
-rw-r--r--lib/std/array_hash_map.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/array_hash_map.zig b/lib/std/array_hash_map.zig
index 31860963af..304c98a2a9 100644
--- a/lib/std/array_hash_map.zig
+++ b/lib/std/array_hash_map.zig
@@ -798,7 +798,7 @@ pub fn ArrayHashMapUnmanaged(
allocator: Allocator,
additional_capacity: usize,
) !void {
- if (@sizeOf(ByIndexContext) != 0)
+ if (@sizeOf(Context) != 0)
@compileError("Cannot infer context " ++ @typeName(Context) ++ ", call ensureTotalCapacityContext instead.");
return self.ensureUnusedCapacityContext(allocator, additional_capacity, undefined);
}