summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event/Dispatching_Modules.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event/Dispatching_Modules.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/Dispatching_Modules.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/Dispatching_Modules.cpp b/TAO/orbsvcs/orbsvcs/Event/Dispatching_Modules.cpp
index 05f96a10b3e..2ef2c864f4d 100644
--- a/TAO/orbsvcs/orbsvcs/Event/Dispatching_Modules.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/Dispatching_Modules.cpp
@@ -67,18 +67,18 @@ ACE_ES_Dispatch_Request::make_copy (RtecEventComm::EventSet &dest) const
// buffer, without owning it, thus it is not removed!
// @@ TODO Check what happens in the collocated case.
dest.replace (1, 1,
- const_cast<RtecEventComm::Event*>(&this->single_event_.event ()),
+ const_cast<RtecEventComm::Event*> (&this->single_event_.event ()),
0);
}
else if (this->event_set_.size () == 1)
{
dest.replace (1, 1,
- const_cast<RtecEventComm::Event*>(&this->event_set_[0].event ()),
+ const_cast<RtecEventComm::Event*> (&this->event_set_[0].event ()),
0);
}
else
{
- dest.length (static_cast<CORBA::ULong>(this->event_set_.size ()));
+ dest.length (static_cast<CORBA::ULong> (this->event_set_.size ()));
int c = 0;
for (CORBA::ULong i = 0; i < this->event_set_.size (); ++i)