summaryrefslogtreecommitdiff
path: root/ACE/tests/Proactor_Test.h
diff options
context:
space:
mode:
authorKnut Petter Svendsen <knut@altuma.no>2022-09-19 14:37:02 +0200
committerKnut Petter Svendsen <knut@altuma.no>2022-09-22 16:20:53 +0200
commit2aab75d5fddc126e8085c70fe8e1b875b75a30ef (patch)
tree82498955ff2b3829d6597ed88a9eca1b1705df96 /ACE/tests/Proactor_Test.h
parent5e96bb28fc7572f39b63ac2aca72800c45cdb1ee (diff)
downloadATCD-2aab75d5fddc126e8085c70fe8e1b875b75a30ef.tar.gz
Part 2: Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'ACE/tests/Proactor_Test.h')
-rw-r--r--ACE/tests/Proactor_Test.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/ACE/tests/Proactor_Test.h b/ACE/tests/Proactor_Test.h
index 76f479df749..e6c2f6f0706 100644
--- a/ACE/tests/Proactor_Test.h
+++ b/ACE/tests/Proactor_Test.h
@@ -27,11 +27,11 @@ public:
Server (TestData *tester, int id);
~Server ();
- int id (void) { return this->id_; }
- size_t get_total_snd (void) { return this->total_snd_; }
- size_t get_total_rcv (void) { return this->total_rcv_; }
- long get_total_w (void) { return this->total_w_; }
- long get_total_r (void) { return this->total_r_; }
+ int id () { return this->id_; }
+ size_t get_total_snd () { return this->total_snd_; }
+ size_t get_total_rcv () { return this->total_rcv_; }
+ long get_total_w () { return this->total_w_; }
+ long get_total_r () { return this->total_r_; }
// This is called to pass the new connection's addresses.
virtual void addresses (const ACE_INET_Addr& peer,
@@ -91,11 +91,11 @@ public:
Client (TestData *tester, int id);
~Client ();
- int id (void) { return this->id_; }
- size_t get_total_snd (void) { return this->total_snd_; }
- size_t get_total_rcv (void) { return this->total_rcv_; }
- int get_total_w (void) { return this->total_w_; }
- int get_total_r (void) { return this->total_r_; }
+ int id () { return this->id_; }
+ size_t get_total_snd () { return this->total_snd_; }
+ size_t get_total_rcv () { return this->total_rcv_; }
+ int get_total_w () { return this->total_w_; }
+ int get_total_r () { return this->total_r_; }
// This is called to pass the new connection's addresses.
virtual void addresses (const ACE_INET_Addr& peer,