summaryrefslogtreecommitdiff
path: root/TAO/tao/Bind_Dispatcher_Guard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Bind_Dispatcher_Guard.cpp')
-rw-r--r--TAO/tao/Bind_Dispatcher_Guard.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/TAO/tao/Bind_Dispatcher_Guard.cpp b/TAO/tao/Bind_Dispatcher_Guard.cpp
index 9466a58fe3e..624d5344f22 100644
--- a/TAO/tao/Bind_Dispatcher_Guard.cpp
+++ b/TAO/tao/Bind_Dispatcher_Guard.cpp
@@ -11,6 +11,8 @@ ACE_RCSID (tao,
Bind_Dispatcher_Guard,
"$Id$")
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
TAO_Bind_Dispatcher_Guard::TAO_Bind_Dispatcher_Guard (
CORBA::ULong request_id,
TAO_Reply_Dispatcher* rd,
@@ -20,7 +22,7 @@ TAO_Bind_Dispatcher_Guard::TAO_Bind_Dispatcher_Guard (
rd_(rd),
tms_(tms)
{
- int retval =
+ int const retval =
this->tms_->bind_dispatcher (this->request_id_,
this->rd_);
@@ -36,3 +38,5 @@ TAO_Bind_Dispatcher_Guard::~TAO_Bind_Dispatcher_Guard (void)
if (this->status_ == TAO_Bind_Dispatcher_Guard::UNBIND)
(void) this->tms_->unbind_dispatcher (this->request_id_);
}
+
+TAO_END_VERSIONED_NAMESPACE_DECL