mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 15:10:19 +00:00
LibDNS: Clean up #include directives
This change aims to improve the speed of incremental builds.
This commit is contained in:
parent
0fa2c1b2c5
commit
f9eaa5d252
2 changed files with 3 additions and 4 deletions
|
@ -7,12 +7,10 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <AK/Base64.h>
|
#include <AK/Base64.h>
|
||||||
#include <AK/MaybeOwned.h>
|
#include <AK/IPv4Address.h>
|
||||||
|
#include <AK/IPv6Address.h>
|
||||||
#include <AK/RedBlackTree.h>
|
#include <AK/RedBlackTree.h>
|
||||||
#include <AK/Time.h>
|
#include <AK/Time.h>
|
||||||
#include <LibCore/Promise.h>
|
|
||||||
#include <LibCore/SocketAddress.h>
|
|
||||||
#include <LibURL/URL.h>
|
|
||||||
|
|
||||||
namespace DNS {
|
namespace DNS {
|
||||||
namespace Messages {
|
namespace Messages {
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
|
|
||||||
#include <AK/AtomicRefCounted.h>
|
#include <AK/AtomicRefCounted.h>
|
||||||
#include <AK/HashTable.h>
|
#include <AK/HashTable.h>
|
||||||
|
#include <AK/MaybeOwned.h>
|
||||||
#include <AK/MemoryStream.h>
|
#include <AK/MemoryStream.h>
|
||||||
#include <AK/Random.h>
|
#include <AK/Random.h>
|
||||||
#include <AK/StringView.h>
|
#include <AK/StringView.h>
|
||||||
|
|
Loading…
Reference in a new issue