clang-tidy: default virtual destructors

Found with cppcoreguidelines-special-member-functions

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2021-05-30 22:30:34 -07:00
parent 679b3bc00f
commit 9ef1cf15a9
9 changed files with 11 additions and 11 deletions

View File

@@ -49,7 +49,7 @@ public:
/**
* Free instance data.
*/
virtual ~NeighborExplorer() noexcept {}
virtual ~NeighborExplorer() noexcept = default;
/**
* Start exploring the neighborhood.