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
Notes: sideshowbarker 2024-07-19 03:05:09 +09:00
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 };

View file

@ -57,7 +57,7 @@ public:
protected:
void change_irq_number(u8 irq);
IRQHandler(u8 irq);
explicit IRQHandler(u8 irq);
private:
bool m_shared_with_others { false };