diff options
author | Brian Gianforcaro <b.gianfo@gmail.com> | 2020-08-09 13:21:07 -0700 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-10 09:57:50 +0200 |
commit | 2eae70b09752a9232284e9ca9126220ae434f35f (patch) | |
tree | 22f87fd015d63d454e94ffb6d6a17096e3e5b890 /Kernel | |
parent | fb29bc8b5064c718cd6164a7f5e9cc8f6d452491 (diff) | |
download | serenity-2eae70b09752a9232284e9ca9126220ae434f35f.zip |
Kernel: Mark MSIHandler as final
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Interrupts/MSIHandler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Interrupts/MSIHandler.h b/Kernel/Interrupts/MSIHandler.h index 73c08676f6..2af13fe87e 100644 --- a/Kernel/Interrupts/MSIHandler.h +++ b/Kernel/Interrupts/MSIHandler.h @@ -33,7 +33,7 @@ namespace Kernel { -class MSIHandler : public GenericInterruptHandler { +class MSIHandler final : public GenericInterruptHandler { public: virtual ~MSIHandler(); |