mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 05:20:30 +00:00
Kernel: Add and remove explicit keyword where needed
This commit is contained in:
parent
6020a4f274
commit
a431108ab6
Notes:
sideshowbarker
2024-07-19 03:05:09 +09:00
Author: https://github.com/supercomputer7 Commit: https://github.com/SerenityOS/serenity/commit/a431108ab66 Pull-request: https://github.com/SerenityOS/serenity/pull/3322 Issue: https://github.com/SerenityOS/serenity/issues/2393
2 changed files with 2 additions and 2 deletions
|
@ -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 };
|
||||
|
|
|
@ -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 };
|
||||
|
|
Loading…
Reference in a new issue