diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2020-09-18 09:49:51 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-25 21:18:17 +0200 |
commit | 64cc3f51d0a1d4ddc68fe9e3b5da2834eac48dae (patch) | |
tree | 8088b0dfe9a558a28137b2168414371a4fe891b6 /Kernel/Interrupts/IRQController.h | |
parent | fa62c5595e98a8d93d7a6e54b4eab45d9095a2c9 (diff) | |
download | serenity-64cc3f51d0a1d4ddc68fe9e3b5da2834eac48dae.zip |
Meta+Kernel: Make clang-format-10 clean
Diffstat (limited to 'Kernel/Interrupts/IRQController.h')
-rw-r--r-- | Kernel/Interrupts/IRQController.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Interrupts/IRQController.h b/Kernel/Interrupts/IRQController.h index b04613a282..35e0fd5276 100644 --- a/Kernel/Interrupts/IRQController.h +++ b/Kernel/Interrupts/IRQController.h @@ -39,7 +39,7 @@ enum class IRQControllerType { class IRQController : public RefCounted<IRQController> { public: - virtual ~IRQController() {} + virtual ~IRQController() { } virtual void enable(const GenericInterruptHandler&) = 0; virtual void disable(const GenericInterruptHandler&) = 0; @@ -57,7 +57,7 @@ public: virtual IRQControllerType type() const = 0; protected: - IRQController() {} + IRQController() { } virtual void initialize() = 0; bool m_hard_disabled { false }; }; |