Fix CppCheck in p3bwctrl.h

/libretroshare/src/services/p3bwctrl.h:77: warning:
Cppcheck(noExplicitConstructor): Class 'p3BandwidthControl' has a
constructor with 1 argument that is not explicit.
This commit is contained in:
Phenom 2017-07-28 19:16:32 +02:00 committed by csoler
parent 9000f2e524
commit 7278f67073

View File

@ -74,7 +74,7 @@ class BwCtrlData
class p3BandwidthControl: public p3Service, public pqiServiceMonitor class p3BandwidthControl: public p3Service, public pqiServiceMonitor
{ {
public: public:
p3BandwidthControl(pqipersongrp *pg); explicit p3BandwidthControl(pqipersongrp *pg);
virtual RsServiceInfo getServiceInfo(); virtual RsServiceInfo getServiceInfo();
/***** overloaded from RsBanList *****/ /***** overloaded from RsBanList *****/