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

Kernel: Add and remove explicit keyword where needed

This commit is contained in:
Liav A 2020-08-28 00:28:07 +03:00 committed by Andreas Kling
parent 6020a4f274
commit a431108ab6
2 changed files with 2 additions and 2 deletions

View file

@ -65,7 +65,7 @@ public:
protected:
void change_interrupt_number(u8 number);
explicit GenericInterruptHandler(u8 interrupt_number, bool disable_remap = false);
GenericInterruptHandler(u8 interrupt_number, bool disable_remap = false);
private:
size_t m_invoking_count { 0 };