remove stray allocator parameter

This commit is contained in:
Josh Wolfe 2020-07-09 21:51:55 -04:00 committed by Andrew Kelley
parent 02619edf41
commit eddc68ad94

View File

@ -96,7 +96,7 @@ pub fn HashMap(
return self.unmanaged.clearRetainingCapacity();
}
pub fn clearAndFree(self: *Self, allocator: *Allocator) void {
pub fn clearAndFree(self: *Self) void {
return self.unmanaged.clearAndFree(self.allocator);
}