diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2021-02-01 22:48:35 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-08 18:03:57 +0100 |
commit | c9bb887c5577ebc4016150b08453e3f7cd8b6758 (patch) | |
tree | 67a71aa301dd9eb36bcc123f9a65ce252ccfb16a /Userland/Libraries/LibCpp/AST.h | |
parent | 0a2304ba0598281764318a616e74fb1685b7fbb0 (diff) | |
download | serenity-c9bb887c5577ebc4016150b08453e3f7cd8b6758.zip |
Everywhere: Remove unnecessary headers 1/4
Arbitrarily split up to make git bisect easier.
These unnecessary #include's were found by combining an automated tool (which
determined likely candidates) and some brain power (which decided whether
the #include is also semantically superfluous).
My favorite #include:
#include "Applications/Piano/Music.h" // You can't have too much music in life!
Diffstat (limited to 'Userland/Libraries/LibCpp/AST.h')
-rw-r--r-- | Userland/Libraries/LibCpp/AST.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCpp/AST.h b/Userland/Libraries/LibCpp/AST.h index 5f31b0f2e4..38a1f87824 100644 --- a/Userland/Libraries/LibCpp/AST.h +++ b/Userland/Libraries/LibCpp/AST.h @@ -26,7 +26,6 @@ #pragma once -#include "Applications/Piano/Music.h" #include <AK/NonnullRefPtrVector.h> #include <AK/Optional.h> #include <AK/RefCounted.h> |