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:
Phenom 2017-07-17 11:43:41 +02:00 committed by csoler
parent 896ed3e992
commit 91c526f2b5

View File

@ -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();