summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2023-01-02 18:15:28 +0100
committerSam Atkins <atkinssj@gmail.com>2023-01-02 20:08:35 +0000
commitc1676cdddb1ad7a190c8b7abced8e94c77836e80 (patch)
treecea95978b0a6a3f3a5e9fe4af4faef1f327b3749 /Userland/Libraries/LibGUI
parenta8391d5a6093b6136db17fedc0e5a77e0bbac1ae (diff)
downloadserenity-c1676cdddb1ad7a190c8b7abced8e94c77836e80.zip
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.
Diffstat (limited to 'Userland/Libraries/LibGUI')
-rw-r--r--Userland/Libraries/LibGUI/GML/AST.h1
1 files changed, 0 insertions, 1 deletions
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 <AK/Error.h>
#include <AK/Forward.h>
#include <AK/HashMap.h>
-#include <AK/IterationDecision.h>
#include <AK/JsonArray.h>
#include <AK/JsonValue.h>
#include <AK/NonnullRefPtr.h>