Fix clang warning: unused variable 'STORE_KEY_TIMEOUT'

/libretroshare/src/pqi/authgpg.cc:51: warning: unused variable
'STORE_KEY_TIMEOUT' [-Wunused-const-variable]
const time_t STORE_KEY_TIMEOUT = 1 * 60 * 60; //store key is call around
every hour
This commit is contained in:
Phenom 2017-07-15 14:31:21 +02:00 committed by csoler
parent 0479ec07ab
commit e4616c09bc

View File

@ -48,7 +48,7 @@
//#define DEBUG_AUTHGPG 1
const time_t STORE_KEY_TIMEOUT = 1 * 60 * 60; //store key is call around every hour
//const time_t STORE_KEY_TIMEOUT = 1 * 60 * 60; //store key is call around every hour
AuthGPG *AuthGPG::_instance = NULL ;