Fix clang warning: unused variable 'MAX_SERIALIZED_ARRAY_SIZE'

/libretroshare/src/serialiser/rstypeserializer.cc:39: warning: unused
variable 'MAX_SERIALIZED_ARRAY_SIZE' [-Wunused-const-variable]
static const uint32_t MAX_SERIALIZED_ARRAY_SIZE = 500 ;
This commit is contained in:
Phenom 2017-07-15 18:17:00 +02:00 committed by csoler
parent d83a9625cc
commit 903f875d1d

View File

@ -36,7 +36,7 @@
#include <time.h>
static const uint32_t MAX_SERIALIZED_ARRAY_SIZE = 500 ;
//static const uint32_t MAX_SERIALIZED_ARRAY_SIZE = 500 ;
static const uint32_t MAX_SERIALIZED_CHUNK_SIZE = 10*1024*1024 ; // 10 MB.
//=================================================================================================//