AK: Remove try_ prefix from FixedArray creation functions

This commit is contained in:
Linus Groh 2023-01-28 20:12:17 +00:00 committed by Jelle Raaijmakers
commit 9c08bb9555
Notes: sideshowbarker 2024-07-17 01:02:18 +09:00
26 changed files with 57 additions and 59 deletions

View file

@ -63,7 +63,7 @@ bool NoteTrack::check_processor_chain_valid() const
ErrorOr<void> Track::resize_internal_buffers_to(size_t buffer_size)
{
m_secondary_sample_buffer = TRY(FixedArray<Sample>::try_create(buffer_size));
m_secondary_sample_buffer = TRY(FixedArray<Sample>::create(buffer_size));
return {};
}