1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-05 20:54:44 +00:00

Everywhere: Fix badly-formatted includes

This commit is contained in:
Ben Wiederhake 2022-09-14 00:56:13 +02:00 committed by Brian Gianforcaro
parent 318a343616
commit 7c5e30daaa
6 changed files with 11 additions and 12 deletions

View File

@ -6,9 +6,9 @@
#pragma once
#include "LibCpp/Token.h"
#include <AK/StringView.h>
#include <AK/Vector.h>
#include <LibCpp/Token.h>
namespace Cpp {

View File

@ -6,12 +6,12 @@
#pragma once
#include "AK/NonnullRefPtr.h"
#include "AST.h"
#include "Preprocessor.h"
#include <AK/Noncopyable.h>
#include <AK/NonnullRefPtr.h>
#include <LibCodeComprehension/Types.h>
#include <LibCpp/AST.h>
#include <LibCpp/Lexer.h>
#include <LibCpp/Preprocessor.h>
namespace Cpp {

View File

@ -6,8 +6,8 @@
#pragma once
#include "AK/ByteBuffer.h"
#include "AK/Types.h"
#include <AK/ByteBuffer.h>
#include <AK/Types.h>
struct PtraceRegisters;

View File

@ -8,8 +8,7 @@
#include <AK/Optional.h>
#include <AK/Types.h>
#include "LibDebug/DebugSession.h"
#include <LibDebug/DebugSession.h>
namespace Debug::StackFrameUtils {

View File

@ -7,13 +7,13 @@
#pragma once
#include "AK/Forward.h"
#include "LibGfx/Forward.h"
#include <AK/Forward.h>
#include <AK/String.h>
#include <AK/Utf32View.h>
#include <AK/Utf8View.h>
#include <AK/Vector.h>
#include <LibGfx/Font/Font.h>
#include <LibGfx/Forward.h>
#include <LibGfx/Rect.h>
#include <LibGfx/TextElision.h>
#include <LibGfx/TextWrapping.h>

View File

@ -6,9 +6,9 @@
#pragma once
#include "AK/StringBuilder.h"
#include "LibRegex/RegexMatcher.h"
#include <AK/Debug.h>
#include <AK/StringBuilder.h>
#include <LibRegex/RegexMatcher.h>
namespace regex {