summaryrefslogtreecommitdiff
path: root/TAO/tao/TransportCurrent/Current_Impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/TransportCurrent/Current_Impl.cpp')
-rw-r--r--TAO/tao/TransportCurrent/Current_Impl.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tao/TransportCurrent/Current_Impl.cpp b/TAO/tao/TransportCurrent/Current_Impl.cpp
index 3dc2406b05a..b4c5416f540 100644
--- a/TAO/tao/TransportCurrent/Current_Impl.cpp
+++ b/TAO/tao/TransportCurrent/Current_Impl.cpp
@@ -28,7 +28,7 @@ namespace TAO
}
/// dtor
- Current_Impl::~Current_Impl (void)
+ Current_Impl::~Current_Impl ()
{
}
@@ -60,34 +60,34 @@ namespace TAO
return (t==0 || t->stats () == 0) ? &dummy_transport_stats : t->stats ();
}
- CORBA::Long Current_Impl::id (void)
+ CORBA::Long Current_Impl::id ()
{
const TAO_Transport* t = this->transport ();
return (t==0) ? 0 : static_cast<CORBA::Long> (t->id ());
}
- CounterT Current_Impl::bytes_sent (void)
+ CounterT Current_Impl::bytes_sent ()
{
return transport_stats ()->bytes_sent ();
}
- CounterT Current_Impl::bytes_received (void)
+ CounterT Current_Impl::bytes_received ()
{
return transport_stats ()->bytes_received ();
}
- CounterT Current_Impl::messages_sent (void)
+ CounterT Current_Impl::messages_sent ()
{
return transport_stats ()->messages_sent ();
}
- CounterT Current_Impl::messages_received (void)
+ CounterT Current_Impl::messages_received ()
{
return transport_stats ()->messages_received ();
}
- TimeBase::TimeT Current_Impl::open_since (void)
+ TimeBase::TimeT Current_Impl::open_since ()
{
TimeBase::TimeT msecs = 0;
transport_stats ()->opened_since ().msec (msecs);