diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-12-08 08:04:35 +0100 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-12-08 08:04:35 +0100 |
commit | 9027b24610848c0eb0d768b60b132ce9e09dee7d (patch) | |
tree | f2b313d8110861616f330776f20f1df0c348cc0b /ACE/tests/Reactor_Dispatch_Order_Test.cpp | |
parent | cfb87b202043d9f6b5532f3e3e4e431f6ced4c0b (diff) | |
download | ATCD-9027b24610848c0eb0d768b60b132ce9e09dee7d.tar.gz |
Removed redundant void
Diffstat (limited to 'ACE/tests/Reactor_Dispatch_Order_Test.cpp')
-rw-r--r-- | ACE/tests/Reactor_Dispatch_Order_Test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/tests/Reactor_Dispatch_Order_Test.cpp b/ACE/tests/Reactor_Dispatch_Order_Test.cpp index b0032d4d36a..1df24bf6e05 100644 --- a/ACE/tests/Reactor_Dispatch_Order_Test.cpp +++ b/ACE/tests/Reactor_Dispatch_Order_Test.cpp @@ -35,7 +35,7 @@ public: int handle_output (ACE_HANDLE fd); - ACE_HANDLE get_handle (void) const; + ACE_HANDLE get_handle () const; // We need to add MSG_OOB data transfer to this test to check the // order of when <handle_exception> gets called. I tried with @@ -76,14 +76,14 @@ Handler::Handler (ACE_Reactor &reactor) } -Handler::~Handler (void) +Handler::~Handler () { this->pipe_.close (); } ACE_HANDLE -Handler::get_handle (void) const +Handler::get_handle () const { return this->pipe_.read_handle (); } |