*: use defaulted destructors

This commit is contained in:
Max Kellermann
2020-02-01 13:47:16 +01:00
parent faa04966af
commit 4c52001a35
6 changed files with 11 additions and 16 deletions

View File

@@ -28,8 +28,8 @@
#include <stdexcept>
NeighborGlue::NeighborGlue() noexcept {}
NeighborGlue::~NeighborGlue() noexcept {}
NeighborGlue::NeighborGlue() noexcept = default;
NeighborGlue::~NeighborGlue() noexcept = default;
static std::unique_ptr<NeighborExplorer>
CreateNeighborExplorer(EventLoop &loop, NeighborListener &listener,