diff options
author | Timothy Flynn <trflynn89@pm.me> | 2023-01-08 19:23:00 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-01-09 23:00:24 +0000 |
commit | f3db548a3d068c051c4d6eba970b89422a6b9522 (patch) | |
tree | df8846e5699175b425ca8d07b7b6350c0a04dcf7 /AK/Forward.h | |
parent | 2eacc7aec1b2b1cc5a491727baa75817ca819bc5 (diff) | |
download | serenity-f3db548a3d068c051c4d6eba970b89422a6b9522.zip |
AK+Everywhere: Rename FlyString to DeprecatedFlyString
DeprecatedFlyString relies heavily on DeprecatedString's StringImpl, so
let's rename it to A) match the name of DeprecatedString, B) write a new
FlyString class that is tied to String.
Diffstat (limited to 'AK/Forward.h')
-rw-r--r-- | AK/Forward.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AK/Forward.h b/AK/Forward.h index 3803009a4a..6805f659b1 100644 --- a/AK/Forward.h +++ b/AK/Forward.h @@ -27,13 +27,13 @@ class JsonArray; class JsonObject; class JsonValue; class StackInfo; +class DeprecatedFlyString; class DeprecatedString; class StringBuilder; class StringImpl; class StringView; class Time; class URL; -class FlyString; class String; class Utf16View; class Utf32View; @@ -160,6 +160,7 @@ using AK::Bytes; using AK::CircularBuffer; using AK::CircularDuplexStream; using AK::CircularQueue; +using AK::DeprecatedFlyString; using AK::DeprecatedString; using AK::DoublyLinkedList; using AK::DuplexMemoryStream; @@ -167,7 +168,6 @@ using AK::Error; using AK::ErrorOr; using AK::FixedArray; using AK::FixedPoint; -using AK::FlyString; using AK::Function; using AK::GenericLexer; using AK::HashMap; |