summaryrefslogtreecommitdiff
path: root/ACE/ace/Event_Handler_T.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:52:29 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:52:29 +0100
commit104d9f8a30c479fe661883b295f120ab035645d9 (patch)
treeaa39aaa576d8ce2e1666df7a750d77df1a33232e /ACE/ace/Event_Handler_T.cpp
parent2d22ad2099d46d44fa05778313a8d4c9c4a4eba3 (diff)
downloadATCD-104d9f8a30c479fe661883b295f120ab035645d9.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/ace/Event_Handler_T.cpp')
-rw-r--r--ACE/ace/Event_Handler_T.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Event_Handler_T.cpp b/ACE/ace/Event_Handler_T.cpp
index 51efca89136..6c403c143ca 100644
--- a/ACE/ace/Event_Handler_T.cpp
+++ b/ACE/ace/Event_Handler_T.cpp
@@ -17,7 +17,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_ALLOC_HOOK_DEFINE(ACE_Event_Handler_T)
template <class T> void
-ACE_Event_Handler_T<T>::dump (void) const
+ACE_Event_Handler_T<T>::dump () const
{
#if defined (ACE_HAS_DUMP)
ACE_TRACE ("ACE_Event_Handler_T<T>::dump");
@@ -57,7 +57,7 @@ ACE_Event_Handler_T<T>::ACE_Event_Handler_T (T *op_handler, int delete_handler,
}
template<class T> ACE_HANDLE
-ACE_Event_Handler_T<T>::get_handle (void) const
+ACE_Event_Handler_T<T>::get_handle () const
{
ACE_TRACE ("ACE_Event_Handler_T<T>::get_handle");
return this->get_handle_ == 0 ? ACE_INVALID_HANDLE : (this->op_handler_->*get_handle_) ();