From da190f544e374a05953746ecc945ef0b2fc9d7e1 Mon Sep 17 00:00:00 2001 From: Phenom Date: Fri, 28 Jul 2017 11:11:14 +0200 Subject: [PATCH] Fix CppCheck in p3Status /libretroshare/src/rsserver/p3status.h:42: warning: Cppcheck(noExplicitConstructor): Class 'p3Status' has a constructor with 1 argument that is not explicit. --- libretroshare/src/rsserver/p3status.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretroshare/src/rsserver/p3status.h b/libretroshare/src/rsserver/p3status.h index ca7a0e508..bec3d4822 100644 --- a/libretroshare/src/rsserver/p3status.h +++ b/libretroshare/src/rsserver/p3status.h @@ -39,7 +39,7 @@ class p3Status : public RsStatus { public: - p3Status(p3StatusService* statusSrv); + explicit p3Status(p3StatusService* statusSrv); virtual ~p3Status();