From b31c812d8d54991a6731798ff4595b7b128546e1 Mon Sep 17 00:00:00 2001 From: Phenom Date: Sat, 15 Jul 2017 18:35:11 +0200 Subject: [PATCH] Fix clang warning: unused variable 'NEWSFEED_CHANNELMSGLIST' /retroshare-gui/src/gui/NewsFeed.cpp:70: warning: unused variable 'NEWSFEED_CHANNELMSGLIST' [-Wunused-const-variable] const uint32_t NEWSFEED_CHANNELMSGLIST = 0x0005; --- retroshare-gui/src/gui/NewsFeed.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroshare-gui/src/gui/NewsFeed.cpp b/retroshare-gui/src/gui/NewsFeed.cpp index 852a85bb3..eae3c5af4 100644 --- a/retroshare-gui/src/gui/NewsFeed.cpp +++ b/retroshare-gui/src/gui/NewsFeed.cpp @@ -67,7 +67,7 @@ const uint32_t NEWSFEED_PEERLIST = 0x0001; const uint32_t NEWSFEED_FORUMNEWLIST = 0x0002; const uint32_t NEWSFEED_FORUMMSGLIST = 0x0003; const uint32_t NEWSFEED_CHANNELNEWLIST = 0x0004; -const uint32_t NEWSFEED_CHANNELMSGLIST = 0x0005; +//const uint32_t NEWSFEED_CHANNELMSGLIST = 0x0005; #if 0 const uint32_t NEWSFEED_BLOGNEWLIST = 0x0006; const uint32_t NEWSFEED_BLOGMSGLIST = 0x0007;