mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 13:57:35 +00:00
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.
This commit is contained in:
parent
9e807d7c6a
commit
6a351376aa
4 changed files with 5 additions and 5 deletions
|
@ -221,7 +221,7 @@ static ErrorOr<void> generate_source(Core::File& file, HashMap<DeprecatedString,
|
|||
SourceGenerator generator { builder };
|
||||
|
||||
generator.append(R"~~~(
|
||||
#include "PnpIDs.h"
|
||||
#include <LibEDID/PnpIDs.h>
|
||||
|
||||
namespace PnpIDs {
|
||||
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
*/
|
||||
|
||||
#include "RollWidget.h"
|
||||
#include "LibDSP/Music.h"
|
||||
#include "TrackManager.h"
|
||||
#include <AK/IntegralMath.h>
|
||||
#include <LibDSP/Music.h>
|
||||
#include <LibGUI/Event.h>
|
||||
#include <LibGUI/Painter.h>
|
||||
#include <LibGUI/Scrollbar.h>
|
||||
|
|
|
@ -8,11 +8,11 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "AK/Endian.h"
|
||||
#include "AK/Forward.h"
|
||||
#include <AK/DeprecatedString.h>
|
||||
#include <AK/Endian.h>
|
||||
#include <AK/Error.h>
|
||||
#include <AK/FixedArray.h>
|
||||
#include <AK/Forward.h>
|
||||
#include <AK/Span.h>
|
||||
|
||||
namespace OpenType {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
#include "MatroskaDemuxer.h"
|
||||
#include "AK/Debug.h"
|
||||
#include <AK/Debug.h>
|
||||
|
||||
namespace Video::Matroska {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue