added two missing virtual desctructors in GXS interface structures

This commit is contained in:
csoler 2018-12-14 22:14:59 +01:00
parent 117c19b104
commit 60112e8387
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -54,6 +54,8 @@ static const uint32_t RS_GXS_FORUM_MSG_FLAGS_MODERATED = 0x00000001;
struct RsGxsForumGroup : RsSerializable
{
virtual ~RsGxsForumGroup() {}
RsGroupMetaData mMeta;
std::string mDescription;
@ -76,6 +78,8 @@ struct RsGxsForumGroup : RsSerializable
struct RsGxsForumMsg : RsSerializable
{
virtual ~RsGxsForumMsg() {}
RsMsgMetaData mMeta;
std::string mMsg;