1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

code style with dumer.cpp

This commit is contained in:
Manuel Pitz 2021-02-16 12:25:34 +01:00
parent 64c6f5acb2
commit ae3b3d6b95
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ protected:
uint64_t warningCounter;
public:
Dumper(std::string socketNameIn);
Dumper(const std::string socketNameIn);
~Dumper();
int openSocket(std::string socketNameIn);
void closeSocket();

View file

@ -30,7 +30,7 @@
using namespace villas;
using namespace villas::node;
Dumper::Dumper(std::string socketNameIn) :
Dumper::Dumper(const std::string socketNameIn) :
socketName(""),
supressRepeatedWarning(true),
warningCounter(0)