From b9ae6daa0257d77c48e6557b40b97b39f67be19c Mon Sep 17 00:00:00 2001 From: James Mintram Date: Wed, 1 Dec 2021 17:12:11 +0000 Subject: [PATCH] Kernel: Add an x86 include check+error in x86/Inerrupts.h --- Kernel/Arch/x86/Interrupts.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Kernel/Arch/x86/Interrupts.h b/Kernel/Arch/x86/Interrupts.h index f97b82c43fc..1da549ee12c 100644 --- a/Kernel/Arch/x86/Interrupts.h +++ b/Kernel/Arch/x86/Interrupts.h @@ -10,6 +10,9 @@ #include #include +#include +VALIDATE_IS_X86() + namespace Kernel { class GenericInterruptHandeler;