mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-16 18:11:49 +00:00
Apply modernize-use-equals-default
This commit is contained in:
@@ -29,7 +29,7 @@ namespace fair::mq
|
||||
class BenchmarkSampler : public Device
|
||||
{
|
||||
public:
|
||||
BenchmarkSampler() {}
|
||||
BenchmarkSampler() = default;
|
||||
|
||||
void InitTask() override
|
||||
{
|
||||
|
@@ -20,7 +20,7 @@ namespace fair::mq
|
||||
class Multiplier : public Device
|
||||
{
|
||||
public:
|
||||
Multiplier() {}
|
||||
Multiplier() = default;
|
||||
|
||||
protected:
|
||||
bool fMultipart = true;
|
||||
|
@@ -19,7 +19,7 @@ namespace fair::mq
|
||||
class Proxy : public Device
|
||||
{
|
||||
public:
|
||||
Proxy() {}
|
||||
Proxy() = default;
|
||||
|
||||
protected:
|
||||
bool fMultipart = true;
|
||||
|
@@ -25,7 +25,7 @@ namespace fair::mq
|
||||
class Sink : public Device
|
||||
{
|
||||
public:
|
||||
Sink() {}
|
||||
Sink() = default;
|
||||
|
||||
protected:
|
||||
bool fMultipart = false;
|
||||
|
@@ -19,7 +19,7 @@ namespace fair::mq
|
||||
class Splitter : public Device
|
||||
{
|
||||
public:
|
||||
Splitter() {}
|
||||
Splitter() = default;
|
||||
|
||||
protected:
|
||||
bool fMultipart = true;
|
||||
|
Reference in New Issue
Block a user