LibDNS: Add missing Core::Socket include to resolver

Without this, we get incomplete type errors
This commit is contained in:
Andrew Kaster 2025-02-20 05:36:01 -07:00 committed by Andrew Kaster
parent 1809ab2743
commit eb4c565e57
Notes: github-actions[bot] 2025-02-20 22:05:59 +00:00

View file

@ -15,7 +15,7 @@
#include <AK/TemporaryChange.h>
#include <LibCore/DateTime.h>
#include <LibCore/Promise.h>
#include <LibCore/SocketAddress.h>
#include <LibCore/Socket.h>
#include <LibCore/Timer.h>
#include <LibDNS/Message.h>
#include <LibThreading/MutexProtected.h>