summaryrefslogtreecommitdiff
path: root/ACE/ace/Handle_Set.inl
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 14:59:53 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 14:59:53 +0100
commitf08a54e04d9eb26b402076b961fb5122ec1bbc3d (patch)
treee6c7cac74238a53dfd7475180285fccb86cb63a4 /ACE/ace/Handle_Set.inl
parentc7c7a9dd9b8cd5cfc699c3c8b5f682bba5423a79 (diff)
downloadATCD-f08a54e04d9eb26b402076b961fb5122ec1bbc3d.tar.gz
Remove redundant void arg
Diffstat (limited to 'ACE/ace/Handle_Set.inl')
-rw-r--r--ACE/ace/Handle_Set.inl10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/Handle_Set.inl b/ACE/ace/Handle_Set.inl
index db76152f168..c156c78c846 100644
--- a/ACE/ace/Handle_Set.inl
+++ b/ACE/ace/Handle_Set.inl
@@ -11,7 +11,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
// Initialize the bitmask to all 0s and reset the associated fields.
ACE_INLINE void
-ACE_Handle_Set::reset (void)
+ACE_Handle_Set::reset ()
{
ACE_TRACE ("ACE_Handle_Set::reset");
this->max_handle_ =
@@ -53,7 +53,7 @@ ACE_Handle_Set::operator = (const ACE_Handle_Set &rhs)
// Returns the number of the large bit.
ACE_INLINE ACE_HANDLE
-ACE_Handle_Set::max_set (void) const
+ACE_Handle_Set::max_set () const
{
ACE_TRACE ("ACE_Handle_Set::max_set");
return this->max_handle_;
@@ -133,7 +133,7 @@ ACE_Handle_Set::clr_bit (ACE_HANDLE handle)
// Returns a count of the number of enabled bits.
ACE_INLINE int
-ACE_Handle_Set::num_set (void) const
+ACE_Handle_Set::num_set () const
{
ACE_TRACE ("ACE_Handle_Set::num_set");
#if defined (ACE_HANDLE_SET_USES_FD_ARRAY)
@@ -159,7 +159,7 @@ ACE_Handle_Set::operator fd_set *()
// Returns a pointer to the underlying fd_set.
ACE_INLINE fd_set *
-ACE_Handle_Set::fdset (void)
+ACE_Handle_Set::fdset ()
{
ACE_TRACE ("ACE_Handle_Set::fdset");
@@ -170,7 +170,7 @@ ACE_Handle_Set::fdset (void)
}
ACE_INLINE
-ACE_Handle_Set_Iterator::~ACE_Handle_Set_Iterator (void)
+ACE_Handle_Set_Iterator::~ACE_Handle_Set_Iterator ()
{
}