LibDNS: Clean up #include directives

This change aims to improve the speed of incremental builds.
This commit is contained in:
Pavel Shliak 2024-11-21 01:54:21 +04:00
parent 0fa2c1b2c5
commit f9eaa5d252
2 changed files with 3 additions and 4 deletions

View file

@ -7,12 +7,10 @@
#pragma once
#include <AK/Base64.h>
#include <AK/MaybeOwned.h>
#include <AK/IPv4Address.h>
#include <AK/IPv6Address.h>
#include <AK/RedBlackTree.h>
#include <AK/Time.h>
#include <LibCore/Promise.h>
#include <LibCore/SocketAddress.h>
#include <LibURL/URL.h>
namespace DNS {
namespace Messages {

View file

@ -8,6 +8,7 @@
#include <AK/AtomicRefCounted.h>
#include <AK/HashTable.h>
#include <AK/MaybeOwned.h>
#include <AK/MemoryStream.h>
#include <AK/Random.h>
#include <AK/StringView.h>