Fix Warnings for 'RsGroupInfo' defined as a struct here but previously

declared as a class

In file included from ../../../trunk/retroshare-gui/src/gui/
RemoteDirModel.cpp:30:
../../../trunk/libretroshare/src/retroshare/rspeers.h:339:1: warning:
'RsGroupInfo' defined as a struct here but previously declared as a class
[-Wmismatched-tags]
struct RsGroupInfo : RsSerializable
^
../../../trunk/retroshare-gui/src/gui/common/GroupDefs.h:24:1: note: did
you mean struct here?
class RsGroupInfo;
^~~~~
struct
This commit is contained in:
Phenom 2019-02-14 23:42:17 +01:00
parent a9a8caf2d4
commit 8904f732bd

View File

@ -21,7 +21,7 @@
#ifndef _GROUPDEFS_H #ifndef _GROUPDEFS_H
#define _GROUPDEFS_H #define _GROUPDEFS_H
class RsGroupInfo; struct RsGroupInfo;
class GroupDefs class GroupDefs
{ {