Everywhere: Remove unnecessary headers 4/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:
Ben Wiederhake 2021-02-01 22:48:35 +01:00 committed by Andreas Kling
parent cc89606ba8
commit c6a42ab5c3
Notes: sideshowbarker 2024-07-18 22:30:38 +09:00
9 changed files with 0 additions and 9 deletions

View file

@ -26,7 +26,6 @@
#pragma once
#include <AK/Assertions.h>
#include <AK/Noncopyable.h>
#include <AK/Optional.h>
#include <AK/Platform.h>

View file

@ -26,7 +26,6 @@
#pragma once
#include <AK/Assertions.h>
#include <AK/CircularQueue.h>
#include <AK/Types.h>

View file

@ -28,7 +28,6 @@
#include <AK/Stream.h>
#ifndef KERNEL
# include <AK/LogStream.h>
# include <errno.h>
# include <stdio.h>

View file

@ -28,7 +28,6 @@
#include <AK/HashTable.h>
#include <AK/Optional.h>
#include <AK/StdLibExtras.h>
#include <AK/Vector.h>
// NOTE: We can't include <initializer_list> during the toolchain bootstrap,

View file

@ -27,7 +27,6 @@
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
#include <AK/JsonParser.h>
#include <AK/Memory.h>
#include <ctype.h>
namespace AK {

View file

@ -24,7 +24,6 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <AK/Function.h>
#include <AK/JsonArray.h>
#include <AK/JsonObject.h>
#include <AK/JsonParser.h>

View file

@ -29,7 +29,6 @@
#include <AK/Assertions.h>
#include <AK/Atomic.h>
#include <AK/LogStream.h>
#include <AK/StdLibExtras.h>
#include <AK/Types.h>
#ifdef KERNEL
# include <Kernel/Arch/i386/CPU.h>

View file

@ -27,7 +27,6 @@
#pragma once
#include <AK/SinglyLinkedList.h>
#include <AK/StdLibExtras.h>
namespace AK {

View file

@ -32,7 +32,6 @@
#include <LibJS/Lexer.h>
#include <LibJS/Parser.h>
#include <LibJS/Runtime/GlobalObject.h>
#include <signal.h>
#include <stddef.h>
#include <stdint.h>