mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:57:45 +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();
|
~FlyString();
|
||||||
|
|
||||||
static ErrorOr<FlyString> from_utf8(StringView);
|
static ErrorOr<FlyString> from_utf8(StringView);
|
||||||
explicit FlyString(String const&);
|
FlyString(String const&);
|
||||||
FlyString& operator=(String const&);
|
FlyString& operator=(String const&);
|
||||||
|
|
||||||
FlyString(FlyString const&);
|
FlyString(FlyString const&);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue