Browse Source

Kernel: Add missing #include <AK/Badge.h> to MemoryManager.h

This missing header broke the aarch64 build
Marco Cutecchia 3 years ago
parent
commit
a7ce0c2297
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Kernel/Memory/MemoryManager.h

+ 1 - 0
Kernel/Memory/MemoryManager.h

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