summaryrefslogtreecommitdiff
path: root/ace/Connector.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-04 18:23:12 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-07-04 18:23:12 +0000
commit523aa4a484f446b3ebd1334849f4af26a7371e3f (patch)
treefc711a38bc92e1e0b95734bc2ef616d189508177 /ace/Connector.cpp
parent82b367d03acf1087f5cdfa93d9b057bbf81a1d80 (diff)
downloadATCD-523aa4a484f446b3ebd1334849f4af26a7371e3f.tar.gz
ChangeLogTag:Sun Jul 4 12:34:24 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ace/Connector.cpp')
-rw-r--r--ace/Connector.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/ace/Connector.cpp b/ace/Connector.cpp
index b77fe99f276..02d3e1d54b8 100644
--- a/ace/Connector.cpp
+++ b/ace/Connector.cpp
@@ -747,7 +747,8 @@ ACE_Strategy_Connector<SH, PR_CO_2>::open
else if (this->creation_strategy_ == 0)
{
ACE_NEW_RETURN (this->creation_strategy_,
- CREATION_STRATEGY, -1);
+ CREATION_STRATEGY,
+ -1);
this->delete_creation_strategy_ = 1;
}
@@ -768,11 +769,11 @@ ACE_Strategy_Connector<SH, PR_CO_2>::open
else if (this->connect_strategy_ == 0)
{
ACE_NEW_RETURN (this->connect_strategy_,
- CONNECT_STRATEGY, -1);
+ CONNECT_STRATEGY,
+ -1);
this->delete_connect_strategy_ = 1;
}
-
// Initialize the concurrency strategy.
if (this->concurrency_strategy_ != 0 &&
@@ -789,7 +790,8 @@ ACE_Strategy_Connector<SH, PR_CO_2>::open
else if (this->concurrency_strategy_ == 0)
{
ACE_NEW_RETURN (this->concurrency_strategy_,
- CONCURRENCY_STRATEGY, -1);
+ CONCURRENCY_STRATEGY,
+ -1);
this->delete_concurrency_strategy_ = 1;
}