mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:07:36 +00:00
AK: Remove try_
prefix from FixedArray creation functions
This commit is contained in:
parent
909c2a73c4
commit
9c08bb9555
26 changed files with 57 additions and 59 deletions
|
@ -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 {};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue