summaryrefslogtreecommitdiff
path: root/TAO/docs
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 14:28:21 +0100
committerGitHub <noreply@github.com>2021-03-17 14:28:21 +0100
commitadc3b3184957de087fb84f045a7e4ba7287e1270 (patch)
tree90611e27c86a77ea8ea4bcabdf9f39819e6cbdc5 /TAO/docs
parent5f9ccb42bc00bd6e0eee5907f5046c10ea4404eb (diff)
parent104d9f8a30c479fe661883b295f120ab035645d9 (diff)
downloadATCD-adc3b3184957de087fb84f045a7e4ba7287e1270.tar.gz
Merge pull request #1457 from jwillemsen/jwi-redundantvoid
Removed redundant void
Diffstat (limited to 'TAO/docs')
-rw-r--r--TAO/docs/transport_current/index.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/docs/transport_current/index.html b/TAO/docs/transport_current/index.html
index c2e484d7e5f..0bedc8fa041 100644
--- a/TAO/docs/transport_current/index.html
+++ b/TAO/docs/transport_current/index.html
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<!-- -->
@@ -429,15 +429,15 @@ information about how a transport is used:
Stats ();
void messages_sent (size_t message_length);
- CORBA::LongLong messages_sent (void) const;
- CORBA::LongLong bytes_sent (void) const;
+ CORBA::LongLong messages_sent () const;
+ CORBA::LongLong bytes_sent () const;
void messages_received (size_t message_length);
- CORBA::LongLong messages_received (void) const;
- CORBA::LongLong bytes_received (void) const;
+ CORBA::LongLong messages_received () const;
+ CORBA::LongLong bytes_received () const;
void opened_since (const ACE_Time_Value& tv);
- const ACE_Time_Value& opened_since (void) const;
+ const ACE_Time_Value& opened_since () const;
private:
CORBA::LongLong messages_rcvd_; // 32bits not enough (?)