From 54eeb71f02d1c4c4e49f25e25ed0821a7325b093 Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Mon, 17 Feb 2020 21:20:51 +0100 Subject: [PATCH] bugfix: added implementation --- thermal/AcceptsThermalMessagesIF.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/thermal/AcceptsThermalMessagesIF.h b/thermal/AcceptsThermalMessagesIF.h index e95faaaf..28c62af6 100644 --- a/thermal/AcceptsThermalMessagesIF.h +++ b/thermal/AcceptsThermalMessagesIF.h @@ -10,7 +10,11 @@ class AcceptsThermalMessagesIF { public: - virtual ~AcceptsThermalMessagesIF(); + + /** + * @brief This is the empty virtual destructor as required for C++ interfaces. + */ + virtual ~AcceptsThermalMessagesIF() { } virtual MessageQueueId_t getReceptionQueue() const = 0; };