summaryrefslogtreecommitdiff
path: root/Userland/Shell/Shell.cpp
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2021-08-18 07:22:52 -0400
committerAndreas Kling <kling@serenityos.org>2021-08-19 23:49:25 +0200
commit02e3633b7fded9f46c8fe642b93ccf6f1ab8fed2 (patch)
tree568bbd8148b34c53ca6cc4182d8eabb4dc138142 /Userland/Shell/Shell.cpp
parente331656bb9032bc232584e721d7d4e611d2d42ca (diff)
downloadserenity-02e3633b7fded9f46c8fe642b93ccf6f1ab8fed2.zip
AK: Move FormatParser definition from header to implementation file
This is primarily to be able to remove the GenericLexer include out of Format.h as well. A subsequent commit will add AK::Result to GenericLexer, which will cause naming conflicts with other structures named Result. This can be avoided (for now) by preventing nearly every file in the system from implicitly including GenericLexer. Other changes in this commit are to add the GenericLexer include to files where it is missing.
Diffstat (limited to 'Userland/Shell/Shell.cpp')
-rw-r--r--Userland/Shell/Shell.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Shell/Shell.cpp b/Userland/Shell/Shell.cpp
index b16e7fef37..4f7469dd16 100644
--- a/Userland/Shell/Shell.cpp
+++ b/Userland/Shell/Shell.cpp
@@ -10,6 +10,7 @@
#include <AK/CharacterTypes.h>
#include <AK/Debug.h>
#include <AK/Function.h>
+#include <AK/GenericLexer.h>
#include <AK/LexicalPath.h>
#include <AK/QuickSort.h>
#include <AK/ScopeGuard.h>