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 committed by Alexander Kalenik
parent 35764db0b7
commit cd14b215d1
Notes: github-actions[bot] 2024-11-21 13:09:45 +00:00
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>