# HG changeset patch # User Chris Cannam # Date 1542898518 0 # Node ID 232d6ddf257d5b8c38702587cdd051e0d2fa2085 # Parent 07f23b90701a1711e762a4091e45be28cec5d737 Fixes from clang modernize-use-override diff -r 07f23b90701a -r 232d6ddf257d plugin/NativeVampPluginFactory.cpp --- a/plugin/NativeVampPluginFactory.cpp Wed Nov 14 15:46:35 2018 +0000 +++ b/plugin/NativeVampPluginFactory.cpp Thu Nov 22 14:55:18 2018 +0000 @@ -44,7 +44,7 @@ PluginDeletionNotifyAdapter(Vamp::Plugin *plugin, NativeVampPluginFactory *factory) : PluginWrapper(plugin), m_factory(factory) { } - virtual ~PluginDeletionNotifyAdapter(); + ~PluginDeletionNotifyAdapter() override; protected: NativeVampPluginFactory *m_factory; }; diff -r 07f23b90701a -r 232d6ddf257d plugin/PluginScan.cpp --- a/plugin/PluginScan.cpp Wed Nov 14 15:46:35 2018 +0000 +++ b/plugin/PluginScan.cpp Thu Nov 22 14:55:18 2018 +0000 @@ -31,7 +31,7 @@ #endif { protected: - void log(std::string message) { + void log(std::string message) override { SVDEBUG << "PluginScan: " << message << endl; } };