From 2eae70b09752a9232284e9ca9126220ae434f35f Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sun, 9 Aug 2020 13:21:07 -0700 Subject: [PATCH] Kernel: Mark MSIHandler as final --- Kernel/Interrupts/MSIHandler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();