diff options
Diffstat (limited to 'ACE/ace/Dynamic_Service_Base.cpp')
-rw-r--r-- | ACE/ace/Dynamic_Service_Base.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/Dynamic_Service_Base.cpp b/ACE/ace/Dynamic_Service_Base.cpp index 301361a0b2d..2a0e2b2260f 100644 --- a/ACE/ace/Dynamic_Service_Base.cpp +++ b/ACE/ace/Dynamic_Service_Base.cpp @@ -68,7 +68,6 @@ ACE_Dynamic_Service_Base::find_i (const ACE_Service_Gestalt* &repo, // Get the instance using <name> for specific configuration repository. - void * ACE_Dynamic_Service_Base::instance (const ACE_Service_Gestalt* repo, const ACE_TCHAR *name, @@ -80,7 +79,7 @@ ACE_Dynamic_Service_Base::instance (const ACE_Service_Gestalt* repo, const ACE_Service_Type_Impl *type = 0; const ACE_Service_Gestalt* repo_found = repo; - const ACE_Service_Type *svc_rec = find_i (repo_found, name, no_global); + const ACE_Service_Type *svc_rec = this->find_i (repo_found, name, no_global); if (svc_rec != 0) { type = svc_rec->type (); @@ -98,7 +97,8 @@ ACE_Dynamic_Service_Base::instance (const ACE_Service_Gestalt* repo, repo->repo_, name, type, obj)); if (repo->repo_ != repo_found->repo_) - ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT (" [in repo=%@]\n"), + ACE_DEBUG ((LM_DEBUG, + ACE_LIB_TEXT (" [in repo=%@]\n"), repo_found->repo_)); else ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\n"))); @@ -114,7 +114,7 @@ void * ACE_Dynamic_Service_Base::instance (const ACE_Service_Gestalt* repo, const ACE_TCHAR *name) { - return instance(repo,name,false); + return instance (repo, name, false); } |