Core: Removed more operator workarounds for ACE_Singleton (missed previously because of inconsistent naming)

--HG--
branch : trunk
This commit is contained in:
Shauren
2010-12-23 23:25:44 +01:00
parent 95daf7998f
commit 928443d899
245 changed files with 5711 additions and 5714 deletions

View File

@@ -24,7 +24,7 @@ static bool GetValueHelper(ACE_Configuration_Heap *mConf, const char *name, ACE_
if (!mConf)
return false;
ACE_GUARD_RETURN(ACE_Thread_Mutex, guard, sConfig.mMtx, false);
ACE_GUARD_RETURN(ACE_Thread_Mutex, guard, sConfig->mMtx, false);
ACE_TString section_name;
ACE_Configuration_Section_Key section_key;

View File

@@ -49,7 +49,7 @@ class Config
ACE_Configuration_Heap *mConf;
};
#define sConfig (*ACE_Singleton<Config, ACE_Null_Mutex>::instance())
#define sConfig ACE_Singleton<Config, ACE_Null_Mutex>::instance()
#endif