mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:17:35 +00:00
AK: Make FlyString(String) constructor implicit
This stops us needing a lot of ugly `FlyString { ... }` wrappers. THis is the behavior that `DeprecatedFlyString(DeprecatedString)` has so it should be fine.
This commit is contained in:
parent
2026ea557e
commit
b5eb2ee478
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ public:
|
|||
~FlyString();
|
||||
|
||||
static ErrorOr<FlyString> from_utf8(StringView);
|
||||
explicit FlyString(String const&);
|
||||
FlyString(String const&);
|
||||
FlyString& operator=(String const&);
|
||||
|
||||
FlyString(FlyString const&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue