summaryrefslogtreecommitdiff
path: root/TAO/tao/Connection_Handler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Connection_Handler.cpp')
-rw-r--r--TAO/tao/Connection_Handler.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/Connection_Handler.cpp b/TAO/tao/Connection_Handler.cpp
index 2da87ae7413..6401fac6155 100644
--- a/TAO/tao/Connection_Handler.cpp
+++ b/TAO/tao/Connection_Handler.cpp
@@ -40,7 +40,7 @@ TAO_Connection_Handler::TAO_Connection_Handler (TAO_ORB_Core *orb_core)
TAO_Connection_Handler::~TAO_Connection_Handler (void)
{
- int result =
+ int const result =
this->release_os_resources ();
if (result == -1 && TAO_debug_level)
@@ -228,7 +228,7 @@ TAO_Connection_Handler::handle_input_eh (
return 0;
}
- int result = this->handle_input_internal (h, eh);
+ int const result = this->handle_input_internal (h, eh);
if (result == -1)
{
@@ -249,7 +249,7 @@ TAO_Connection_Handler::handle_input_internal (
// Grab the transport id now and use the cached value for printing
// since the transport could dissappear by the time the thread
// returns.
- size_t t_id =
+ size_t const t_id =
this->transport ()->id ();
if (TAO_debug_level > 6)
@@ -298,7 +298,7 @@ TAO_Connection_Handler::close_connection_eh (ACE_Event_Handler *eh)
// Save the ID for debugging messages
ACE_HANDLE handle = eh->get_handle ();
- size_t id = this->transport ()->id ();
+ size_t const id = this->transport ()->id ();
if (TAO_debug_level)
{
ACE_DEBUG ((LM_DEBUG,