From b7d8c35c65f384a31176d35db2c0add23a93fc6b Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Mon, 11 Dec 2023 15:27:58 -0500 Subject: [PATCH] msg: trivial destructor should be default See: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-five Signed-off-by: Patrick Donnelly --- src/msg/Dispatcher.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msg/Dispatcher.h b/src/msg/Dispatcher.h index 885f1843b31c4..ddf273288b35d 100644 --- a/src/msg/Dispatcher.h +++ b/src/msg/Dispatcher.h @@ -33,7 +33,7 @@ public: : cct(cct_) { } - virtual ~Dispatcher() { } + virtual ~Dispatcher() = default; /** * The Messenger calls this function to query if you are capable -- 2.39.5