mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
Everywhere: Remove unnecessary headers 2/4
Arbitrarily split up to make git bisect easier. These unnecessary #include's were found by combining an automated tool (which determined likely candidates) and some brain power (which decided whether the #include is also semantically superfluous).
This commit is contained in:
parent
c9bb887c55
commit
fa2b5ca6f6
Notes:
sideshowbarker
2024-07-18 22:30:47 +09:00
Author: https://github.com/BenWiederhake Commit: https://github.com/SerenityOS/serenity/commit/fa2b5ca6f60 Pull-request: https://github.com/SerenityOS/serenity/pull/5258
4 changed files with 0 additions and 10 deletions
|
@ -27,7 +27,6 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/HashTable.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
namespace AK {
|
||||
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
#include <AK/JsonObjectSerializer.h>
|
||||
#include <AK/JsonValue.h>
|
||||
#include <AK/String.h>
|
||||
#include <AK/StringImpl.h>
|
||||
|
||||
namespace AK {
|
||||
|
||||
|
|
|
@ -35,10 +35,6 @@
|
|||
# include <Kernel/Thread.h>
|
||||
#endif
|
||||
|
||||
#if !defined(KERNEL)
|
||||
# include <stdio.h>
|
||||
#endif
|
||||
|
||||
namespace AK {
|
||||
|
||||
const LogStream& operator<<(const LogStream& stream, const String& value)
|
||||
|
|
|
@ -34,10 +34,6 @@
|
|||
#include <AK/StringView.h>
|
||||
#include <AK/Vector.h>
|
||||
|
||||
#ifndef KERNEL
|
||||
# include <inttypes.h>
|
||||
#endif
|
||||
|
||||
namespace AK {
|
||||
|
||||
String::String(const StringView& view)
|
||||
|
|
Loading…
Reference in a new issue