Fix clang warning: unused variable 'MAX_TUNNEL_REQUESTS_DISPLAY'

/retroshare-gui/src/gui/statistics/TurtleRouterStatistics.cpp:36:
warning: unused variable 'MAX_TUNNEL_REQUESTS_DISPLAY' [-Wunused-const-
variable]
static const int MAX_TUNNEL_REQUESTS_DISPLAY = 10 ;
/retroshare-gui/src/gui/statistics/GlobalRouterStatistics.cpp:58:
warning: unused variable 'MAX_TUNNEL_REQUESTS_DISPLAY' [-Wunused-const-
variable]
static const int MAX_TUNNEL_REQUESTS_DISPLAY = 10 ;
This commit is contained in:
Phenom 2017-07-15 18:40:03 +02:00 committed by csoler
parent 64899e40e8
commit a0ac6b7ca0
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@
#define COL_DUPLICATION_FACTOR 9
static const int PARTIAL_VIEW_SIZE = 9 ;
static const int MAX_TUNNEL_REQUESTS_DISPLAY = 10 ;
//static const int MAX_TUNNEL_REQUESTS_DISPLAY = 10 ;
static QColor colorScale(float f)
{

View File

@ -33,7 +33,7 @@
#include "gui/settings/rsharesettings.h"
static const int MAX_TUNNEL_REQUESTS_DISPLAY = 10 ;
//static const int MAX_TUNNEL_REQUESTS_DISPLAY = 10 ;
class TRHistogram
{