summaryrefslogtreecommitdiff
path: root/ACE/ace/Dynamic_Service_Base.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-02 10:33:44 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-02 10:33:44 +0000
commit70f31f8df1129d39f91a876ff9227ca29e49e085 (patch)
tree199469c992926b11d3b46fc968f2b02455808c68 /ACE/ace/Dynamic_Service_Base.cpp
parent2326582c9c576d4bf2bce7807be81bf9015104b9 (diff)
downloadATCD-70f31f8df1129d39f91a876ff9227ca29e49e085.tar.gz
Fri Feb 2 10:31:14 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Dynamic_Service_Base.cpp')
-rw-r--r--ACE/ace/Dynamic_Service_Base.cpp8
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);
}