diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-11-10 16:45:01 -0500 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-11-10 16:45:01 -0500 |
| commit | df89291d1ca04a5891dd48ea5f6d1a99b6006bcb (patch) | |
| tree | 83970de0fdaa7383c11f64efceff7f88d6fd9cd9 /std/hash_map.zig | |
| parent | e9d7623e1f0300b1b652373f2e0e7b605eaf13d1 (diff) | |
| parent | 019f18058bb74816f8754de63a219347597e06da (diff) | |
| download | zig-df89291d1ca04a5891dd48ea5f6d1a99b6006bcb.tar.gz zig-df89291d1ca04a5891dd48ea5f6d1a99b6006bcb.zip | |
Merge remote-tracking branch 'origin/master' into llvm6
Diffstat (limited to 'std/hash_map.zig')
| -rw-r--r-- | std/hash_map.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/hash_map.zig b/std/hash_map.zig index 582aa7ccaf..d124d7b573 100644 --- a/std/hash_map.zig +++ b/std/hash_map.zig @@ -232,7 +232,7 @@ pub fn HashMap(comptime K: type, comptime V: type, } test "basicHashMapTest" { - var map = HashMap(i32, i32, hash_i32, eql_i32).init(&debug.global_allocator); + var map = HashMap(i32, i32, hash_i32, eql_i32).init(debug.global_allocator); defer map.deinit(); assert(%%map.put(1, 11) == null); |
