mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-26 07:59:35 -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;
|
||||
|
||||
// Temp tweak to test grouter
|
||||
struct p3MsgService :
|
||||
p3Service, p3Config, pqiServiceMonitor, GRouterClientService,
|
||||
class p3MsgService :
|
||||
public p3Service, public p3Config, public pqiServiceMonitor, GRouterClientService,
|
||||
GxsTransClient
|
||||
{
|
||||
public:
|
||||
p3MsgService(p3ServiceControl *sc, p3IdService *id_service, p3GxsTrans& gxsMS);
|
||||
|
||||
virtual RsServiceInfo getServiceInfo();
|
||||
|
Loading…
Reference in New Issue
Block a user