| author | |
| committer | |
| log | d5ebe3e3953eae7c3b62e01ec94d5e0ba19c48a8 |
| tree | 6bc3f8704ebd25b34e2de3dc5ed332dd510a7b69 |
| parent | c036f83fa0f029e8e03e599f5b9e95cf98224a1c |
I don't believe there's a requirement for this to take a pointer, as the underlying function doesn't.1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/array_hash_map.zig+1-1| ... | ... | @@ -216,7 +216,7 @@ pub fn ArrayHashMap( |
| 216 | 216 | |
| 217 | 217 | /// Returns the number of total elements which may be present before it is |
| 218 | 218 | /// no longer guaranteed that no allocations will be performed. |
| 219 | pub fn capacity(self: *Self) usize { | |
| 219 | pub fn capacity(self: Self) usize { | |
| 220 | 220 | return self.unmanaged.capacity(); |
| 221 | 221 | } |
| 222 | 222 |