mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-13 16:39:43 -05:00
Fix clang warning: 'p3MsgService' defined as a struct here but
previously declared as a class /libretroshare/src/services/p3msgservice.h:58: warning: 'p3MsgService' defined as a struct here but previously declared as a class [- Wmismatched-tags] struct p3MsgService : /libretroshare/src/rsserver/p3msgs.h:32: did you mean struct here? class p3MsgService;
This commit is contained in:
parent
896ed3e992
commit
91c526f2b5
@ -55,10 +55,11 @@ class p3LinkMgr;
|
|||||||
class p3IdService;
|
class p3IdService;
|
||||||
|
|
||||||
// Temp tweak to test grouter
|
// Temp tweak to test grouter
|
||||||
struct p3MsgService :
|
class p3MsgService :
|
||||||
p3Service, p3Config, pqiServiceMonitor, GRouterClientService,
|
public p3Service, public p3Config, public pqiServiceMonitor, GRouterClientService,
|
||||||
GxsTransClient
|
GxsTransClient
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
p3MsgService(p3ServiceControl *sc, p3IdService *id_service, p3GxsTrans& gxsMS);
|
p3MsgService(p3ServiceControl *sc, p3IdService *id_service, p3GxsTrans& gxsMS);
|
||||||
|
|
||||||
virtual RsServiceInfo getServiceInfo();
|
virtual RsServiceInfo getServiceInfo();
|
||||||
|
Loading…
Reference in New Issue
Block a user