From c1676cdddb1ad7a190c8b7abced8e94c77836e80 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Mon, 2 Jan 2023 18:15:28 +0100 Subject: [PATCH] Everywhere: Remove unused includes of AK/IterationDecision.h These instances were detected by searching for files that include IterationDecision.h, but don't match the regex: \\bIterationDecision(?!\.h>)\\b This is the only symbol defined by IterationDecision.h. In theory, one might use LibCPP to detect things like this automatically, but let's do this one step after another. --- AK/Types.h | 1 - Userland/Applications/Browser/main.cpp | 1 - Userland/Libraries/LibGUI/GML/AST.h | 1 - 3 files changed, 3 deletions(-) diff --git a/AK/Types.h b/AK/Types.h index db6146b81a..4c9d26e019 100644 --- a/AK/Types.h +++ b/AK/Types.h @@ -6,7 +6,6 @@ #pragma once -#include #include #include diff --git a/Userland/Applications/Browser/main.cpp b/Userland/Applications/Browser/main.cpp index a1ab997c41..13ab6406b8 100644 --- a/Userland/Applications/Browser/main.cpp +++ b/Userland/Applications/Browser/main.cpp @@ -6,7 +6,6 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include #include #include #include diff --git a/Userland/Libraries/LibGUI/GML/AST.h b/Userland/Libraries/LibGUI/GML/AST.h index 85c84cc925..9c8d8acd30 100644 --- a/Userland/Libraries/LibGUI/GML/AST.h +++ b/Userland/Libraries/LibGUI/GML/AST.h @@ -11,7 +11,6 @@ #include #include #include -#include #include #include #include