From f46a1377ac39985b4fe6132a6b360dcac0036c38 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 25 Jul 2019 11:49:08 +0200 Subject: [PATCH] CSocket: Add missing include to fix host build. --- Libraries/LibCore/CSocket.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Libraries/LibCore/CSocket.cpp b/Libraries/LibCore/CSocket.cpp index ee334bdf59..87419587e0 100644 --- a/Libraries/LibCore/CSocket.cpp +++ b/Libraries/LibCore/CSocket.cpp @@ -9,6 +9,7 @@ #include #include #include +#include CSocket::CSocket(Type type, CObject* parent) : CIODevice(parent)