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

@@ -19,14 +19,10 @@ namespace fair::mq
class Proxy : public Device
{
public:
Proxy()
: fMultipart(true)
, fInChannelName()
, fOutChannelName()
{}
Proxy() {}
protected:
bool fMultipart;
bool fMultipart = true;
std::string fInChannelName;
std::string fOutChannelName;