Apply modernize-use-default-member-init

This commit is contained in:
Alexey Rybalchenko
2021-05-26 13:53:48 +02:00
committed by Dennis Klein
parent e1b229522c
commit acf63d3c1b
33 changed files with 120 additions and 257 deletions

View File

@@ -18,15 +18,8 @@ namespace bpo = boost::program_options;
class Readout : public FairMQDevice
{
public:
Readout()
: fMsgSize(10000)
, fMaxIterations(0)
, fNumIterations(0)
, fRegion(nullptr)
, fNumUnackedMsgs(0)
{}
Readout() {}
protected:
void InitTask() override
{
fMsgSize = fConfig->GetProperty<int>("msg-size");
@@ -65,6 +58,7 @@ class Readout : public FairMQDevice
return true;
}
void ResetTask() override
{
// if not all messages acknowledged, wait for a bit. But only once, since receiver could be already dead.
@@ -77,11 +71,11 @@ class Readout : public FairMQDevice
}
private:
int fMsgSize;
uint64_t fMaxIterations;
uint64_t fNumIterations;
FairMQUnmanagedRegionPtr fRegion;
std::atomic<uint64_t> fNumUnackedMsgs;
int fMsgSize = 10000;
uint64_t fMaxIterations = 0;
uint64_t fNumIterations = 0;
FairMQUnmanagedRegionPtr fRegion = nullptr;
std::atomic<uint64_t> fNumUnackedMsgs = 0;
};
void addCustomOptions(bpo::options_description& options)

View File

@@ -14,12 +14,8 @@ namespace bpo = boost::program_options;
class Receiver : public FairMQDevice
{
public:
Receiver()
: fMaxIterations(0)
, fNumIterations(0)
{}
Receiver() {}
protected:
void InitTask() override
{
// Get the fMaxIterations value from the command line options (via fConfig)
@@ -43,8 +39,8 @@ class Receiver : public FairMQDevice
}
private:
uint64_t fMaxIterations;
uint64_t fNumIterations;
uint64_t fMaxIterations = 0;
uint64_t fNumIterations = 0;
};
void addCustomOptions(bpo::options_description& options)

View File

@@ -16,9 +16,7 @@ namespace bpo = boost::program_options;
class Sender : public FairMQDevice
{
public:
Sender()
: fInputChannelName()
{}
Sender() {}
void Init() override
{