1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 22:47: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 {