From 681811e403fc40a8ede3a40b6a26ca4290d30dc4 Mon Sep 17 00:00:00 2001 From: Donatien Garnier Date: Tue, 28 Aug 2018 16:55:09 +0100 Subject: [PATCH] NFCController::Delegate's destructor does not need to be virtual --- features/nfc/nfc/NFCControllerDriver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/nfc/nfc/NFCControllerDriver.h b/features/nfc/nfc/NFCControllerDriver.h index d406b60637..f454d40040 100644 --- a/features/nfc/nfc/NFCControllerDriver.h +++ b/features/nfc/nfc/NFCControllerDriver.h @@ -58,7 +58,7 @@ public: virtual void on_hw_interrupt() {} protected: - virtual ~Delegate() {} + ~Delegate() {} }; /**