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

declared as a class

In file included from ../../../trunk/retroshare-gui/src/gui/
MessengerWindow.cpp:29:
../../../trunk/libretroshare/src/retroshare/rspeers.h:207:1: warning:
'RsPeerDetails' defined as a struct here but previously declared as a
class [-Wmismatched-tags]
struct RsPeerDetails : RsSerializable
^
../../../trunk/retroshare-gui/src/gui/common/StatusDefs.h:27:1: note:
did you mean struct here?
class RsPeerDetails;
^~~~~
struct
This commit is contained in:
Phenom 2019-02-14 23:38:16 +01:00
parent b80d7cb5ae
commit b2572354fb
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@
#include <QString>
#include <retroshare/rsidentity.h>
class RsPeerDetails;
struct RsPeerDetails;
class PeerDefs
{

View File

@ -24,7 +24,7 @@
#include <QColor>
#include <QFont>
class RsPeerDetails;
struct RsPeerDetails;
class StatusDefs
{