mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Fix CppCheck in rsgxsforums.h
/libretroshare/src/retroshare/rsgxsforums.h:66: warning: Cppcheck(noExplicitConstructor): Class 'RsGxsForums' has a constructor with 1 argument that is not explicit.
This commit is contained in:
parent
10c46ee35c
commit
fee7d454d9
@ -63,9 +63,9 @@ class RsGxsForums: public RsGxsIfaceHelper
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
RsGxsForums(RsGxsIface *gxs)
|
explicit RsGxsForums(RsGxsIface *gxs)
|
||||||
:RsGxsIfaceHelper(gxs) { return; }
|
:RsGxsIfaceHelper(gxs) {}
|
||||||
virtual ~RsGxsForums() { return; }
|
virtual ~RsGxsForums() {}
|
||||||
|
|
||||||
/* Specific Service Data */
|
/* Specific Service Data */
|
||||||
virtual bool getGroupData(const uint32_t &token, std::vector<RsGxsForumGroup> &groups) = 0;
|
virtual bool getGroupData(const uint32_t &token, std::vector<RsGxsForumGroup> &groups) = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user