1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:57:35 +00:00

AK: Let FlyStrings be assigned from Strings

This commit is contained in:
Sam Atkins 2023-02-14 14:21:55 +00:00 committed by Tim Flynn
parent abc01cc9fe
commit a35fa553dd
2 changed files with 7 additions and 0 deletions

View file

@ -22,6 +22,7 @@ public:
static ErrorOr<FlyString> from_utf8(StringView);
explicit FlyString(String const&);
FlyString& operator=(String const&);
FlyString(FlyString const&);
FlyString& operator=(FlyString const&);