mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 23:58:11 +00:00
AK: Disallow calling FlyString::from_utf8 on FlyString and String
This commit is contained in:
parent
74b6e7b1f0
commit
73f7f33205
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ public:
|
|||
|
||||
static ErrorOr<FlyString> from_utf8(StringView);
|
||||
template<typename T>
|
||||
requires(IsOneOf<RemoveCVReference<T>, DeprecatedString, DeprecatedFlyString>)
|
||||
requires(IsOneOf<RemoveCVReference<T>, DeprecatedString, DeprecatedFlyString, FlyString, String>)
|
||||
static ErrorOr<String> from_utf8(T&&) = delete;
|
||||
|
||||
FlyString(String const&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue