summaryrefslogtreecommitdiff
path: root/Userland/Applications/Mail
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/Applications/Mail
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/Applications/Mail')
-rw-r--r--Userland/Applications/Mail/MailWidget.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/Mail/MailWidget.cpp b/Userland/Applications/Mail/MailWidget.cpp
index 566025c30c..524832e6e5 100644
--- a/Userland/Applications/Mail/MailWidget.cpp
+++ b/Userland/Applications/Mail/MailWidget.cpp
@@ -6,6 +6,7 @@
#include "MailWidget.h"
#include <AK/Base64.h>
+#include <AK/GenericLexer.h>
#include <Applications/Mail/MailWindowGML.h>
#include <LibCore/ConfigFile.h>
#include <LibDesktop/Launcher.h>