AK: Rename StringImpl to ByteStringImpl

StringImpl is very specific to ByteString. Let's rename it to match, to
avoid confusion with the StringBase and StringData classes.
This commit is contained in:
Timothy Flynn 2025-04-06 10:26:37 -04:00 committed by Andreas Kling
commit 3f439efe21
Notes: github-actions[bot] 2025-04-07 15:45:41 +00:00
7 changed files with 58 additions and 59 deletions

View file

@ -43,6 +43,8 @@ shared_library("AK") {
"ByteReader.h",
"ByteString.cpp",
"ByteString.h",
"ByteStringImpl.cpp",
"ByteStringImpl.h",
"COWVector.h",
"CharacterTypes.h",
"Checked.h",
@ -175,8 +177,6 @@ shared_library("AK") {
"StringFloatingPointConversions.cpp",
"StringFloatingPointConversions.h",
"StringHash.h",
"StringImpl.cpp",
"StringImpl.h",
"StringUtils.cpp",
"StringUtils.h",
"StringView.cpp",