From 7310a9a641e2d899b8091587d22818a6b5f9e882 Mon Sep 17 00:00:00 2001 From: Liav A Date: Fri, 22 Apr 2022 10:31:11 +0300 Subject: [PATCH] Kernel/Interrupts: Add missing include for IRQController header file This is necessary for the next commit in the patch, otherwise this can't be compiled. It seems like this was a hidden issue that is discovered now only by changing includes in a mass-scale. --- Kernel/Arch/x86/IRQController.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/Arch/x86/IRQController.h b/Kernel/Arch/x86/IRQController.h index 43d12f561c..82afa739b4 100644 --- a/Kernel/Arch/x86/IRQController.h +++ b/Kernel/Arch/x86/IRQController.h @@ -8,6 +8,7 @@ #include #include +#include namespace Kernel {