Kernel: Make AddressSpace.cpp compile on aarch64

This commit is contained in:
James Mintram 2022-04-02 23:47:27 +01:00 committed by Brian Gianforcaro
parent 627fd231d5
commit 0d7eee625f
2 changed files with 2 additions and 0 deletions

View file

@ -5,6 +5,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <Kernel/Arch/CPU.h>
#include <Kernel/Locking/Spinlock.h>
#include <Kernel/Memory/AddressSpace.h>
#include <Kernel/Memory/AnonymousVMObject.h>

View file

@ -6,6 +6,7 @@
#pragma once
#include <AK/Badge.h>
#include <AK/HashMap.h>
#include <AK/IntrusiveRedBlackTree.h>
#include <AK/RefCounted.h>