mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-07 06:02:41 -04:00
Removed unused parameter warnings in libretroshare.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4558 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
27842b8592
commit
c6beee44ec
61 changed files with 1047 additions and 983 deletions
|
@ -97,17 +97,17 @@ bool p3ServerConfig::setConfigurationOption(uint32_t key, const std::string &opt
|
|||
|
||||
/* From RsIface::RsConfig */
|
||||
|
||||
int p3ServerConfig::getConfigNetStatus(RsConfigNetStatus &status)
|
||||
int p3ServerConfig::getConfigNetStatus(RsConfigNetStatus &/*status*/)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int p3ServerConfig::getConfigStartup(RsConfigStartup ¶ms)
|
||||
int p3ServerConfig::getConfigStartup(RsConfigStartup &/*params*/)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int p3ServerConfig::getConfigDataRates(RsConfigDataRates ¶ms)
|
||||
int p3ServerConfig::getConfigDataRates(RsConfigDataRates &/*params*/)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
@ -147,7 +147,7 @@ bool p3ServerConfig::getAutoLogin()
|
|||
return 0;
|
||||
}
|
||||
|
||||
void p3ServerConfig::setAutoLogin(bool autoLogin)
|
||||
void p3ServerConfig::setAutoLogin(bool /*autoLogin*/)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
@ -170,7 +170,7 @@ uint32_t p3ServerConfig::getUserLevel()
|
|||
uint32_t userLevel = RSCONFIG_USER_LEVEL_NEW;
|
||||
{
|
||||
RsStackMutex stack(configMtx); /******* LOCKED MUTEX *****/
|
||||
uint32_t userLevel = mUserLevel;
|
||||
userLevel = mUserLevel;
|
||||
}
|
||||
|
||||
switch(userLevel)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue