summaryrefslogtreecommitdiff
path: root/TAO/tao/Invocation_Endpoint_Selectors.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-04-19 09:10:19 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-04-19 09:10:19 +0000
commitf9606f4f257e642e04f8c84315b0c8f323fe65e6 (patch)
treea681f895cf5a9b8a4f7ab6603ee4fd3a55ca0305 /TAO/tao/Invocation_Endpoint_Selectors.cpp
parent10fc1a52ad4bc0d1d3d6716d18f77d04022bd2a8 (diff)
downloadATCD-f9606f4f257e642e04f8c84315b0c8f323fe65e6.tar.gz
ChangeLogTag: Wed Apr 19 07:44:49 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/Invocation_Endpoint_Selectors.cpp')
-rw-r--r--TAO/tao/Invocation_Endpoint_Selectors.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Invocation_Endpoint_Selectors.cpp b/TAO/tao/Invocation_Endpoint_Selectors.cpp
index 6d6c0957427..bdb493bd648 100644
--- a/TAO/tao/Invocation_Endpoint_Selectors.cpp
+++ b/TAO/tao/Invocation_Endpoint_Selectors.cpp
@@ -129,16 +129,16 @@ TAO_Default_Endpoint_Selector::select_endpoint (
if (r->blocked_connect () ||
(!r->blocked_connect () && r->profile ()->supports_non_blocking_oneways ()))
{
- const size_t endpoint_count =
+ size_t const endpoint_count =
r->profile ()->endpoint_count ();
- TAO_Endpoint *ep =
+ TAO_Endpoint * ep =
r->profile ()->endpoint ();
for (size_t i = 0; i < endpoint_count; ++i)
{
TAO_Base_Transport_Property desc (ep);
- const bool retval =
+ bool const retval =
r->try_connect (&desc,
max_wait_time
ACE_ENV_ARG_PARAMETER);