Explorar el Código

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

This missing header broke the aarch64 build
Marco Cutecchia hace 3 años
padre
commit
a7ce0c2297
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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>