1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

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.
This commit is contained in:
Liav A 2022-04-22 10:31:11 +03:00 committed by Andreas Kling
parent 99bac4f34f
commit 7310a9a641

View file

@ -8,6 +8,7 @@
#include <AK/RefCounted.h>
#include <AK/Types.h>
#include <Kernel/Interrupts/GenericInterruptHandler.h>
namespace Kernel {