fix(string): remove allocator argument on temp_ascii_to_lower

This commit is contained in:
Fernando López Guevara
2024-09-30 16:48:51 -03:00
committed by Christoffer Lerno
parent 5918d5120f
commit c9b9de2838

View File

@@ -540,7 +540,7 @@ fn String String.new_ascii_to_lower(s, Allocator allocator = allocator::heap())
return copy;
}
fn String String.temp_ascii_to_lower(s, Allocator allocator = allocator::heap())
fn String String.temp_ascii_to_lower(s)
{
return s.new_ascii_to_lower(allocator::temp());
}