1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:27:43 +00:00

Kernel: Remove some unnecessary includes in VM/Physical*

This commit is contained in:
Andreas Kling 2021-07-13 23:11:06 +02:00
parent 0a21d421d9
commit 424afdd72b
4 changed files with 1 additions and 9 deletions

View file

@ -7,8 +7,6 @@
#pragma once
#include <AK/NonnullRefPtr.h>
#include <Kernel/Assertions.h>
#include <Kernel/Heap/SlabAllocator.h>
#include <Kernel/PhysicalAddress.h>
namespace Kernel {

View file

@ -6,9 +6,6 @@
#pragma once
#include <AK/Bitmap.h>
#include <AK/NonnullOwnPtrVector.h>
#include <AK/Optional.h>
#include <AK/OwnPtr.h>
#include <Kernel/VM/PhysicalPage.h>
#include <Kernel/VM/PhysicalZone.h>

View file

@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "PhysicalPage.h"
#include <AK/Format.h>
#include <Kernel/VM/MemoryManager.h>
#include <Kernel/VM/PhysicalPage.h>
#include <Kernel/VM/PhysicalZone.h>
namespace Kernel {

View file

@ -7,10 +7,7 @@
#pragma once
#include <AK/Bitmap.h>
#include <AK/Forward.h>
#include <AK/IntrusiveList.h>
#include <AK/Types.h>
#include <Kernel/Forward.h>
namespace Kernel {