diff --git a/Userland/Libraries/LibCpp/Lexer.h b/Userland/Libraries/LibCpp/Lexer.h index 814de33c46..7c6da63588 100644 --- a/Userland/Libraries/LibCpp/Lexer.h +++ b/Userland/Libraries/LibCpp/Lexer.h @@ -6,9 +6,9 @@ #pragma once -#include "LibCpp/Token.h" #include #include +#include namespace Cpp { diff --git a/Userland/Libraries/LibCpp/Parser.h b/Userland/Libraries/LibCpp/Parser.h index 7f8513deba..3f4c1439cf 100644 --- a/Userland/Libraries/LibCpp/Parser.h +++ b/Userland/Libraries/LibCpp/Parser.h @@ -6,12 +6,12 @@ #pragma once -#include "AK/NonnullRefPtr.h" -#include "AST.h" -#include "Preprocessor.h" #include +#include #include +#include #include +#include namespace Cpp { diff --git a/Userland/Libraries/LibDebug/Dwarf/Expression.h b/Userland/Libraries/LibDebug/Dwarf/Expression.h index 90f0737e8d..ce98787d07 100644 --- a/Userland/Libraries/LibDebug/Dwarf/Expression.h +++ b/Userland/Libraries/LibDebug/Dwarf/Expression.h @@ -6,8 +6,8 @@ #pragma once -#include "AK/ByteBuffer.h" -#include "AK/Types.h" +#include +#include struct PtraceRegisters; diff --git a/Userland/Libraries/LibDebug/StackFrameUtils.h b/Userland/Libraries/LibDebug/StackFrameUtils.h index 2247518780..d7476c7908 100644 --- a/Userland/Libraries/LibDebug/StackFrameUtils.h +++ b/Userland/Libraries/LibDebug/StackFrameUtils.h @@ -8,8 +8,7 @@ #include #include - -#include "LibDebug/DebugSession.h" +#include namespace Debug::StackFrameUtils { diff --git a/Userland/Libraries/LibGfx/TextLayout.h b/Userland/Libraries/LibGfx/TextLayout.h index 96b8ba995e..16e2ea5dd7 100644 --- a/Userland/Libraries/LibGfx/TextLayout.h +++ b/Userland/Libraries/LibGfx/TextLayout.h @@ -7,13 +7,13 @@ #pragma once -#include "AK/Forward.h" -#include "LibGfx/Forward.h" +#include #include #include #include #include #include +#include #include #include #include diff --git a/Userland/Libraries/LibRegex/RegexDebug.h b/Userland/Libraries/LibRegex/RegexDebug.h index 6b9d343fbc..56e88c521b 100644 --- a/Userland/Libraries/LibRegex/RegexDebug.h +++ b/Userland/Libraries/LibRegex/RegexDebug.h @@ -6,9 +6,9 @@ #pragma once -#include "AK/StringBuilder.h" -#include "LibRegex/RegexMatcher.h" #include +#include +#include namespace regex {