diff options
Diffstat (limited to 'TAO/tao/Synch_Invocation.cpp')
-rw-r--r-- | TAO/tao/Synch_Invocation.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tao/Synch_Invocation.cpp b/TAO/tao/Synch_Invocation.cpp index abe453e0d0c..e38207cdbfa 100644 --- a/TAO/tao/Synch_Invocation.cpp +++ b/TAO/tao/Synch_Invocation.cpp @@ -178,7 +178,7 @@ namespace TAO #if TAO_HAS_INTERCEPTORS == 1 if (s == TAO_INVOKE_RESTART) { - Invocation_Status const tmp = + Invocation_Status tmp = this->receive_other_interception (ACE_ENV_SINGLE_ARG_PARAMETER); ACE_TRY_CHECK; @@ -228,7 +228,7 @@ namespace TAO ACE_CATCHANY { #if TAO_HAS_INTERCEPTORS == 1 - PortableInterceptor::ReplyStatus const status = + const PortableInterceptor::ReplyStatus status = this->handle_any_exception (&ACE_ANY_EXCEPTION ACE_ENV_ARG_PARAMETER); ACE_TRY_CHECK; @@ -246,7 +246,7 @@ namespace TAO ACE_CATCHALL { #if TAO_HAS_INTERCEPTORS == 1 - PortableInterceptor::ReplyStatus const st = + const PortableInterceptor::ReplyStatus st = this->handle_all_exception (ACE_ENV_SINGLE_ARG_PARAMETER); ACE_TRY_CHECK; @@ -410,13 +410,13 @@ namespace TAO { // Unmarshal the location forward object and set the // variable this->forward_to_. - Invocation_Status const s + const Invocation_Status s = this->location_forward (cdr ACE_ENV_ARG_PARAMETER); if (s != TAO_INVOKE_FAILURE) { // de-marshalling of permanent object reference was successfull - CORBA::Boolean const permanent_forward_condition = + const CORBA::Boolean permanent_forward_condition = this->orb_core ()->is_permanent_forward_condition (this->forwarded_to_.in (), this->request_service_context ()); @@ -785,7 +785,7 @@ namespace TAO ACE_CATCHANY { #if TAO_HAS_INTERCEPTORS == 1 - PortableInterceptor::ReplyStatus const status = + PortableInterceptor::ReplyStatus status = this->handle_any_exception (&ACE_ANY_EXCEPTION ACE_ENV_ARG_PARAMETER); ACE_TRY_CHECK; @@ -803,7 +803,7 @@ namespace TAO ACE_CATCHALL { #if TAO_HAS_INTERCEPTORS == 1 - PortableInterceptor::ReplyStatus const st = + PortableInterceptor::ReplyStatus st = this->handle_all_exception (ACE_ENV_SINGLE_ARG_PARAMETER); ACE_TRY_CHECK; |