summaryrefslogtreecommitdiff
path: root/Libraries/LibCore/Socket.h
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/LibCore/Socket.h
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/LibCore/Socket.h')
-rw-r--r--Libraries/LibCore/Socket.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Libraries/LibCore/Socket.h b/Libraries/LibCore/Socket.h
index 1b372e5be9..6523674b8c 100644
--- a/Libraries/LibCore/Socket.h
+++ b/Libraries/LibCore/Socket.h
@@ -26,6 +26,7 @@
#pragma once
+#include <AK/Function.h>
#include <LibCore/IODevice.h>
#include <LibCore/SocketAddress.h>