mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-03 04:50:29 +00:00
AK: Forward-declare LexicalPath
And alphabetically sort the list while I'm at it.
This commit is contained in:
parent
8007c103dd
commit
82f58b8af0
Notes:
sideshowbarker
2024-07-17 01:10:58 +09:00
Author: https://github.com/AtkinsSJ Commit: https://github.com/SerenityOS/serenity/commit/82f58b8af0 Pull-request: https://github.com/SerenityOS/serenity/pull/17784 Reviewed-by: https://github.com/trflynn89 ✅
1 changed files with 8 additions and 6 deletions
14
AK/Forward.h
14
AK/Forward.h
|
@ -17,11 +17,14 @@ template<size_t inline_capacity>
|
|||
class ByteBuffer;
|
||||
}
|
||||
|
||||
class Bitmap;
|
||||
class BigEndianInputBitStream;
|
||||
class BigEndianOutputBitStream;
|
||||
class Bitmap;
|
||||
using ByteBuffer = Detail::ByteBuffer<32>;
|
||||
class CircularBuffer;
|
||||
class DeprecatedFlyString;
|
||||
class DeprecatedString;
|
||||
class DeprecatedStringCodePointIterator;
|
||||
class Error;
|
||||
class FlyString;
|
||||
class GenericLexer;
|
||||
|
@ -29,20 +32,18 @@ class IPv4Address;
|
|||
class JsonArray;
|
||||
class JsonObject;
|
||||
class JsonValue;
|
||||
class LexicalPath;
|
||||
class LittleEndianInputBitStream;
|
||||
class LittleEndianOutputBitStream;
|
||||
class StackInfo;
|
||||
class DeprecatedFlyString;
|
||||
class DeprecatedString;
|
||||
class DeprecatedStringCodePointIterator;
|
||||
class SeekableStream;
|
||||
class StackInfo;
|
||||
class Stream;
|
||||
class String;
|
||||
class StringBuilder;
|
||||
class StringImpl;
|
||||
class StringView;
|
||||
class Time;
|
||||
class URL;
|
||||
class String;
|
||||
class Utf16View;
|
||||
class Utf32CodePointIterator;
|
||||
class Utf32View;
|
||||
|
@ -170,6 +171,7 @@ using AK::IPv4Address;
|
|||
using AK::JsonArray;
|
||||
using AK::JsonObject;
|
||||
using AK::JsonValue;
|
||||
using AK::LexicalPath;
|
||||
using AK::LittleEndianInputBitStream;
|
||||
using AK::LittleEndianOutputBitStream;
|
||||
using AK::NonnullOwnPtr;
|
||||
|
|
Loading…
Reference in a new issue