From 52e4a3cd0081a038624f85a5601704c11227de3f Mon Sep 17 00:00:00 2001 From: Phenom Date: Thu, 14 Feb 2019 22:41:19 +0100 Subject: [PATCH] Fix Warnings for 'RsGxsChanges' defined as a struct here but previously declared as a class In file included from ../../../trunk/retroshare-gui/src/main.cpp:66: In file included from ../../../trunk/libretroshare/src/retroshare/ rsidentity.h:31: In file included from ../../../trunk/libretroshare/src/retroshare/ rsgxsifacehelper.h:30: ../../../trunk/libretroshare/src/retroshare/rsgxsiface.h:76:1: warning: 'RsGxsChanges' defined as a struct here but previously declared as a class [-Wmismatched-tags] struct RsGxsChanges ^ ../../../trunk/retroshare-gui/src/util/RsGxsUpdateBroadcast.h:29:1: note: did you mean struct here? class RsGxsChanges; ^~~~~ struct --- retroshare-gui/src/util/RsGxsUpdateBroadcast.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroshare-gui/src/util/RsGxsUpdateBroadcast.h b/retroshare-gui/src/util/RsGxsUpdateBroadcast.h index adc554203..9f12d30de 100644 --- a/retroshare-gui/src/util/RsGxsUpdateBroadcast.h +++ b/retroshare-gui/src/util/RsGxsUpdateBroadcast.h @@ -26,7 +26,7 @@ #include class RsGxsIfaceHelper; -class RsGxsChanges; +struct RsGxsChanges; typedef uint32_t TurtleRequestId ;