summaryrefslogtreecommitdiff
path: root/Libraries/LibThread
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 /Libraries/LibThread
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 'Libraries/LibThread')
-rw-r--r--Libraries/LibThread/BackgroundAction.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibThread/BackgroundAction.h b/Libraries/LibThread/BackgroundAction.h
index 62d41bdd36..0637fa71e4 100644
--- a/Libraries/LibThread/BackgroundAction.h
+++ b/Libraries/LibThread/BackgroundAction.h
@@ -30,6 +30,7 @@
#include <AK/NonnullRefPtr.h>
#include <AK/Optional.h>
#include <AK/Queue.h>
+#include <LibCore/Event.h>
#include <LibCore/EventLoop.h>
#include <LibCore/Object.h>
#include <LibThread/Lock.h>