From 6a351376aa9433864201478ae1432e34f27ef124 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Thu, 1 Jun 2023 16:17:13 +0200 Subject: [PATCH] Everywhere: Only use local includes where appropriate If a local include does not point to a file in the repository, it should be a system include instead. --- Meta/Lagom/Tools/CodeGenerators/LibEDID/GeneratePnpIDs.cpp | 2 +- Userland/Applications/Piano/RollWidget.cpp | 2 +- Userland/Libraries/LibGfx/Font/OpenType/Tables.h | 4 ++-- .../LibVideo/Containers/Matroska/MatroskaDemuxer.cpp | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Meta/Lagom/Tools/CodeGenerators/LibEDID/GeneratePnpIDs.cpp b/Meta/Lagom/Tools/CodeGenerators/LibEDID/GeneratePnpIDs.cpp index f497087261..baff1c1710 100644 --- a/Meta/Lagom/Tools/CodeGenerators/LibEDID/GeneratePnpIDs.cpp +++ b/Meta/Lagom/Tools/CodeGenerators/LibEDID/GeneratePnpIDs.cpp @@ -221,7 +221,7 @@ static ErrorOr generate_source(Core::File& file, HashMap namespace PnpIDs { diff --git a/Userland/Applications/Piano/RollWidget.cpp b/Userland/Applications/Piano/RollWidget.cpp index 12d6bc6236..2da845aac2 100644 --- a/Userland/Applications/Piano/RollWidget.cpp +++ b/Userland/Applications/Piano/RollWidget.cpp @@ -8,9 +8,9 @@ */ #include "RollWidget.h" -#include "LibDSP/Music.h" #include "TrackManager.h" #include +#include #include #include #include diff --git a/Userland/Libraries/LibGfx/Font/OpenType/Tables.h b/Userland/Libraries/LibGfx/Font/OpenType/Tables.h index 0009e2e09e..15c0b301d9 100644 --- a/Userland/Libraries/LibGfx/Font/OpenType/Tables.h +++ b/Userland/Libraries/LibGfx/Font/OpenType/Tables.h @@ -8,11 +8,11 @@ #pragma once -#include "AK/Endian.h" -#include "AK/Forward.h" #include +#include #include #include +#include #include namespace OpenType { diff --git a/Userland/Libraries/LibVideo/Containers/Matroska/MatroskaDemuxer.cpp b/Userland/Libraries/LibVideo/Containers/Matroska/MatroskaDemuxer.cpp index 744356cd19..c2b873031b 100644 --- a/Userland/Libraries/LibVideo/Containers/Matroska/MatroskaDemuxer.cpp +++ b/Userland/Libraries/LibVideo/Containers/Matroska/MatroskaDemuxer.cpp @@ -5,7 +5,7 @@ */ #include "MatroskaDemuxer.h" -#include "AK/Debug.h" +#include namespace Video::Matroska {