Remove allocator argument

This commit is contained in:
Christoffer Lerno
2025-01-21 22:25:37 +01:00
parent b7ffa3b17c
commit 16aadae9bd

View File

@@ -21,7 +21,7 @@ struct BufferedChannelImpl @private
Type[*] buf;
}
fn void! BufferedChannel.new_init(&self, usz size = 1, Allocator allocator = allocator::heap())
fn void! BufferedChannel.new_init(&self, usz size = 1)
{
return self.init(size, allocator::heap());
}