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

@@ -57,7 +57,7 @@ public:
Mixer(const Mixer &) = delete;
virtual ~Mixer() {}
virtual ~Mixer() = default;
bool IsPlugin(const MixerPlugin &other) const noexcept {
return &plugin == &other;