mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-29 00:27:27 -04:00
added two missing virtual desctructors in GXS interface structures
This commit is contained in:
parent
117c19b104
commit
60112e8387
1 changed files with 4 additions and 0 deletions
|
@ -54,6 +54,8 @@ static const uint32_t RS_GXS_FORUM_MSG_FLAGS_MODERATED = 0x00000001;
|
||||||
|
|
||||||
struct RsGxsForumGroup : RsSerializable
|
struct RsGxsForumGroup : RsSerializable
|
||||||
{
|
{
|
||||||
|
virtual ~RsGxsForumGroup() {}
|
||||||
|
|
||||||
RsGroupMetaData mMeta;
|
RsGroupMetaData mMeta;
|
||||||
std::string mDescription;
|
std::string mDescription;
|
||||||
|
|
||||||
|
@ -76,6 +78,8 @@ struct RsGxsForumGroup : RsSerializable
|
||||||
|
|
||||||
struct RsGxsForumMsg : RsSerializable
|
struct RsGxsForumMsg : RsSerializable
|
||||||
{
|
{
|
||||||
|
virtual ~RsGxsForumMsg() {}
|
||||||
|
|
||||||
RsMsgMetaData mMeta;
|
RsMsgMetaData mMeta;
|
||||||
std::string mMsg;
|
std::string mMsg;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue