LibRegex: Clean up #include directives

This change aims to improve the speed of incremental builds.
This commit is contained in:
Pavel Shliak 2024-11-21 01:33:32 +04:00
parent 63a5717bc7
commit 2b8108c442
5 changed files with 0 additions and 10 deletions

View file

@ -8,15 +8,11 @@
#include "RegexBytecodeStreamOptimizer.h" #include "RegexBytecodeStreamOptimizer.h"
#include "RegexMatch.h" #include "RegexMatch.h"
#include "RegexOptions.h"
#include <AK/Concepts.h> #include <AK/Concepts.h>
#include <AK/DisjointChunks.h> #include <AK/DisjointChunks.h>
#include <AK/Forward.h> #include <AK/Forward.h>
#include <AK/HashMap.h>
#include <AK/NonnullOwnPtr.h>
#include <AK/OwnPtr.h> #include <AK/OwnPtr.h>
#include <AK/Traits.h>
#include <AK/TypeCasts.h> #include <AK/TypeCasts.h>
#include <AK/Types.h> #include <AK/Types.h>
#include <AK/Vector.h> #include <AK/Vector.h>

View file

@ -8,7 +8,6 @@
#include <AK/Assertions.h> #include <AK/Assertions.h>
#include <AK/Debug.h> #include <AK/Debug.h>
#include <AK/Format.h> #include <AK/Format.h>
#include <stdio.h>
namespace regex { namespace regex {

View file

@ -13,9 +13,6 @@
#include <AK/Forward.h> #include <AK/Forward.h>
#include <AK/GenericLexer.h> #include <AK/GenericLexer.h>
#include <AK/HashMap.h>
#include <AK/Types.h>
#include <AK/Utf32View.h>
#include <AK/Vector.h> #include <AK/Vector.h>
#include <ctype.h> #include <ctype.h>

View file

@ -16,7 +16,6 @@
#include <AK/StringBuilder.h> #include <AK/StringBuilder.h>
#include <AK/StringUtils.h> #include <AK/StringUtils.h>
#include <AK/TemporaryChange.h> #include <AK/TemporaryChange.h>
#include <AK/Utf16View.h>
#include <LibUnicode/CharacterTypes.h> #include <LibUnicode/CharacterTypes.h>
namespace regex { namespace regex {

View file

@ -12,7 +12,6 @@
#include "RegexOptions.h" #include "RegexOptions.h"
#include <AK/Forward.h> #include <AK/Forward.h>
#include <AK/StringBuilder.h>
#include <AK/Types.h> #include <AK/Types.h>
#include <AK/Vector.h> #include <AK/Vector.h>
#include <LibUnicode/Forward.h> #include <LibUnicode/Forward.h>