summaryrefslogtreecommitdiff
path: root/DevTools
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-14 22:29:06 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-14 23:31:18 +0100
commit8f7333f080c8f114e97e84323dfdb7e09cf30083 (patch)
treee31db910ce1fe81413035c6e604d144e7e32c654 /DevTools
parent3bbf4610d24c0dd8f8f1d0b962259c1f7e067a2d (diff)
downloadserenity-8f7333f080c8f114e97e84323dfdb7e09cf30083.zip
LibCore: Add a forward declaration header
This patch adds <LibCore/Forward.h> and uses it in various places to shrink the header dependency graph.
Diffstat (limited to 'DevTools')
-rw-r--r--DevTools/HackStudio/Editor.cpp1
-rw-r--r--DevTools/IPCCompiler/main.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/DevTools/HackStudio/Editor.cpp b/DevTools/HackStudio/Editor.cpp
index 9110955112..8cdbe83f15 100644
--- a/DevTools/HackStudio/Editor.cpp
+++ b/DevTools/HackStudio/Editor.cpp
@@ -26,6 +26,7 @@
#include "Editor.h"
#include "EditorWrapper.h"
+#include <AK/ByteBuffer.h>
#include <AK/FileSystemPath.h>
#include <LibCore/DirIterator.h>
#include <LibCore/File.h>
diff --git a/DevTools/IPCCompiler/main.cpp b/DevTools/IPCCompiler/main.cpp
index 12b35d0e6c..e50db44377 100644
--- a/DevTools/IPCCompiler/main.cpp
+++ b/DevTools/IPCCompiler/main.cpp
@@ -25,6 +25,7 @@
*/
#include <AK/BufferStream.h>
+#include <AK/Function.h>
#include <AK/HashMap.h>
#include <AK/StringBuilder.h>
#include <LibCore/File.h>