Skip to content

Commit b7d8c35

Browse files
committed
msg: trivial destructor should be default
See: https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Rc-five Signed-off-by: Patrick Donnelly <[email protected]>
1 parent b74786f commit b7d8c35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/msg/Dispatcher.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Dispatcher {
3333
: cct(cct_)
3434
{
3535
}
36-
virtual ~Dispatcher() { }
36+
virtual ~Dispatcher() = default;
3737

3838
/**
3939
* The Messenger calls this function to query if you are capable

0 commit comments

Comments
 (0)