Apply modernize-use-equals-default

This commit is contained in:
Alexey Rybalchenko
2021-05-26 23:49:15 +02:00
committed by Dennis Klein
parent 9444de5868
commit 6aeac265ec
40 changed files with 49 additions and 49 deletions

View File

@@ -81,7 +81,8 @@ class FairMQChannel
// FairMQChannel& operator=(FairMQChannel&&) = delete;
/// Destructor
virtual ~FairMQChannel() { /* LOG(warn) << "Destroying channel '" << fName << "'"; */ }
virtual ~FairMQChannel() = default;
// { LOG(warn) << "Destroying channel '" << fName << "'"; }
struct ChannelConfigurationError : std::runtime_error { using std::runtime_error::runtime_error; };