Fix CppCheck in pqi_base.h

/libretroshare/src/pqi/pqi_base.h:195: warning:
Cppcheck(noExplicitConstructor): Class 'PQInterface' has a constructor
with 1 argument that is not explicit.
This commit is contained in:
Phenom 2017-07-26 10:29:17 +02:00 committed by csoler
parent 50a9d8a1e3
commit 73e1ddc557

View File

@ -192,7 +192,7 @@ class NetInterface;
class PQInterface: public RateInterface
{
public:
PQInterface(const RsPeerId &id) :peerId(id) { return; }
explicit PQInterface(const RsPeerId &id) :peerId(id) { return; }
virtual ~PQInterface() { return; }
/*!