Apply modernize-use-equals-default

This commit is contained in:
Alexey Rybalchenko
2021-05-26 23:49:15 +02:00
parent c764d4643d
commit 2f4d55094a
40 changed files with 49 additions and 49 deletions

View File

@@ -24,7 +24,7 @@ class FairMQParts
public:
/// Default constructor
FairMQParts() {};
FairMQParts() = default;
/// Copy Constructor
FairMQParts(const FairMQParts&) = delete;
/// Move constructor
@@ -35,7 +35,7 @@ class FairMQParts
template <typename... Ts>
FairMQParts(Ts&&... messages) { AddPart(std::forward<Ts>(messages)...); }
/// Default destructor
~FairMQParts() {};
~FairMQParts() = default;
/// Adds part (FairMQMessage) to the container
/// @param msg message pointer (for example created with NewMessage() method of FairMQDevice)