| author | |
| committer | |
| log | 859ae152bc83ca759f466794b8186fa0d3de5060 |
| tree | 66b729bce443257c5557f04f454f24278b74727c |
| parent | 0c5ad335d293be638b8d34e671cf62f84b0babce |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/array_hash_map.zig+1-1| ... | ... | @@ -185,7 +185,7 @@ pub fn ArrayHashMap( |
| 185 | 185 | return self.unmanaged.getOrPutContext(self.allocator, key, self.ctx); |
| 186 | 186 | } |
| 187 | 187 | pub fn getOrPutAdapted(self: *Self, key: anytype, ctx: anytype) !GetOrPutResult { |
| 188 | return self.unmanaged.getOrPutContextAdapted(key, ctx, self.ctx); | |
| 188 | return self.unmanaged.getOrPutContextAdapted(self.allocator, key, ctx, self.ctx); | |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | 191 | /// If there is an existing item with `key`, then the result |