diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-01-24 19:59:37 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2007-01-24 19:59:37 +0000 |
commit | dbbebfafe4500d0a1c025c3178066df3056e06ce (patch) | |
tree | 93df25741900fafb9f5617d0e5d09e363389738d /TAO | |
parent | f8d004dbe5cd72bfe11cd6f75f14fc877b597fa1 (diff) | |
download | ATCD-dbbebfafe4500d0a1c025c3178066df3056e06ce.tar.gz |
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp b/TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp index 8b37f9918dc..94a8341e442 100644 --- a/TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp +++ b/TAO/tao/PortableServer/IdAssignmentStrategyFactoryImpl.cpp @@ -14,12 +14,12 @@ namespace TAO { namespace Portable_Server { - IdAssignmentStrategy* + IdAssignmentStrategy * IdAssignmentStrategyFactoryImpl::create ( ::PortableServer::IdAssignmentPolicyValue value) { - IdAssignmentStrategy* strategy = 0; - const char * strategy_name = 0; + IdAssignmentStrategy *strategy = 0; + const char *strategy_name = 0; switch (value) { @@ -36,19 +36,19 @@ namespace TAO } strategy = - ACE_Dynamic_Service<IdAssignmentStrategy>::instance (strategy_name); + ACE_Dynamic_Service <IdAssignmentStrategy>::instance (strategy_name); if (strategy == 0) ACE_ERROR ((LM_ERROR, - ACE_TEXT ("(%P|%t) ERROR, Unable to get %s\n"), - strategy_name)); + ACE_TEXT ("(%P|%t) ERROR, Unable to get %s\n"), + strategy_name)); return strategy; } void - IdAssignmentStrategyFactoryImpl::destroy ( - IdAssignmentStrategy * /*strategy*/) + IdAssignmentStrategyFactoryImpl::destroy (IdAssignmentStrategy + */*strategy*/) { // Noop because both types are singletons } |