浏览代码

Kernel: Make AddressSpace.cpp compile on aarch64

James Mintram 3 年之前
父节点
当前提交
0d7eee625f
共有 2 个文件被更改,包括 2 次插入0 次删除
  1. 1 0
      Kernel/Memory/AddressSpace.cpp
  2. 1 0
      Kernel/Memory/PageDirectory.h

+ 1 - 0
Kernel/Memory/AddressSpace.cpp

@@ -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>

+ 1 - 0
Kernel/Memory/PageDirectory.h

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