mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Fix clang warning: 'p3ChatService' defined as a struct here but
previously declared as a class /libretroshare/src/chat/p3chatservice.h:56: warning: 'p3ChatService' defined as a struct here but previously declared as a class [- Wmismatched-tags] struct p3ChatService : /libretroshare/src/rsserver/p3msgs.h:33: did you mean struct here? class p3ChatService;
This commit is contained in:
parent
91c526f2b5
commit
300359863e
@ -53,10 +53,11 @@ typedef RsPeerId ChatLobbyVirtualPeerId ;
|
||||
* This service uses rsnotify (callbacks librs clients (e.g. rs-gui))
|
||||
* @see NotifyBase
|
||||
*/
|
||||
struct p3ChatService :
|
||||
p3Service, DistantChatService, DistributedChatService, p3Config,
|
||||
pqiServiceMonitor, GxsTransClient
|
||||
class p3ChatService :
|
||||
public p3Service, public DistantChatService, public DistributedChatService, public p3Config,
|
||||
public pqiServiceMonitor, GxsTransClient
|
||||
{
|
||||
public:
|
||||
p3ChatService(p3ServiceControl *cs, p3IdService *pids, p3LinkMgr *cm,
|
||||
p3HistoryMgr *historyMgr, p3GxsTrans& gxsTransService );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user