mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 13:17:34 +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
|
@ -67,7 +67,7 @@ public:
|
|||
public:
|
||||
static ErrorOr<LookbackBuffer> try_create(size_t size)
|
||||
{
|
||||
auto buffer = TRY(FixedArray<u8>::try_create(size));
|
||||
auto buffer = TRY(FixedArray<u8>::create(size));
|
||||
return LookbackBuffer { buffer };
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue