summaryrefslogtreecommitdiff
path: root/ACE/ace/Unbounded_Set_Ex.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 12:39:57 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 12:39:57 +0100
commit6f91193f0b537d437645ae9e10823a519f547888 (patch)
tree224ad9643523a625196045f37ead1a4e73ddc1f9 /ACE/ace/Unbounded_Set_Ex.cpp
parentfb7e13241cc5ebd590e32ec4343a75d53691cda6 (diff)
downloadATCD-6f91193f0b537d437645ae9e10823a519f547888.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/ace/Unbounded_Set_Ex.cpp')
-rw-r--r--ACE/ace/Unbounded_Set_Ex.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/ACE/ace/Unbounded_Set_Ex.cpp b/ACE/ace/Unbounded_Set_Ex.cpp
index d6460cef1c5..7e6ddafdc4a 100644
--- a/ACE/ace/Unbounded_Set_Ex.cpp
+++ b/ACE/ace/Unbounded_Set_Ex.cpp
@@ -18,7 +18,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_ALLOC_HOOK_DEFINE_Tcc(ACE_Unbounded_Set_Ex)
template <class T, class C> size_t
-ACE_Unbounded_Set_Ex<T, C>::size (void) const
+ACE_Unbounded_Set_Ex<T, C>::size () const
{
// ACE_TRACE ("ACE_Unbounded_Set_Ex<T, C>::size");
return this->cur_size_;
@@ -49,7 +49,7 @@ ACE_Unbounded_Set_Ex<T, C>::insert_tail (const T &item)
}
template <class T, class C> void
-ACE_Unbounded_Set_Ex<T, C>::reset (void)
+ACE_Unbounded_Set_Ex<T, C>::reset ()
{
ACE_TRACE ("reset");
@@ -57,7 +57,7 @@ ACE_Unbounded_Set_Ex<T, C>::reset (void)
}
template <class T, class C> void
-ACE_Unbounded_Set_Ex<T, C>::dump (void) const
+ACE_Unbounded_Set_Ex<T, C>::dump () const
{
#if defined (ACE_HAS_DUMP)
ACE_TRACE ("ACE_Unbounded_Set_Ex<T, C>::dump");
@@ -92,7 +92,7 @@ ACE_Unbounded_Set_Ex<T, C>::copy_nodes (const ACE_Unbounded_Set_Ex<T, C> &us)
}
template <class T, class C> void
-ACE_Unbounded_Set_Ex<T, C>::delete_nodes (void)
+ACE_Unbounded_Set_Ex<T, C>::delete_nodes ()
{
NODE *curr = this->head_->next_;
@@ -114,7 +114,7 @@ ACE_Unbounded_Set_Ex<T, C>::delete_nodes (void)
}
template <class T, class C>
-ACE_Unbounded_Set_Ex<T, C>::~ACE_Unbounded_Set_Ex (void)
+ACE_Unbounded_Set_Ex<T, C>::~ACE_Unbounded_Set_Ex ()
{
// ACE_TRACE ("ACE_Unbounded_Set_Ex<T, C>::~ACE_Unbounded_Set_Ex");
@@ -256,28 +256,28 @@ ACE_Unbounded_Set_Ex<T, C>::remove (const T &item)
}
template <class T, class C> typename ACE_Unbounded_Set_Ex<T, C>::iterator
-ACE_Unbounded_Set_Ex<T, C>::begin (void)
+ACE_Unbounded_Set_Ex<T, C>::begin ()
{
// ACE_TRACE ("ACE_Unbounded_Set_Ex<T, C>::begin");
return iterator (*this);
}
template <class T, class C> typename ACE_Unbounded_Set_Ex<T, C>::iterator
-ACE_Unbounded_Set_Ex<T, C>::end (void)
+ACE_Unbounded_Set_Ex<T, C>::end ()
{
// ACE_TRACE ("ACE_Unbounded_Set_Ex<T, C>::end");
return iterator (*this, 1);
}
template <class T, class C> typename ACE_Unbounded_Set_Ex<T, C>::const_iterator
-ACE_Unbounded_Set_Ex<T, C>::begin (void) const
+ACE_Unbounded_Set_Ex<T, C>::begin () const
{
// ACE_TRACE ("ACE_Unbounded_Set_Ex<T, C>::begin");
return const_iterator (*this);
}
template <class T, class C> typename ACE_Unbounded_Set_Ex<T, C>::const_iterator
-ACE_Unbounded_Set_Ex<T, C>::end (void) const
+ACE_Unbounded_Set_Ex<T, C>::end () const
{
// ACE_TRACE ("ACE_Unbounded_Set_Ex<T, C>::end");
return const_iterator (*this, 1);
@@ -286,7 +286,7 @@ ACE_Unbounded_Set_Ex<T, C>::end (void) const
ACE_ALLOC_HOOK_DEFINE_Tcc(ACE_Unbounded_Set_Ex_Iterator)
template <class T, class C> void
-ACE_Unbounded_Set_Ex_Iterator<T, C>::dump (void) const
+ACE_Unbounded_Set_Ex_Iterator<T, C>::dump () const
{
#if defined (ACE_HAS_DUMP)
// ACE_TRACE ("ACE_Unbounded_Set_Ex_Iterator<T, C>::dump");
@@ -304,7 +304,7 @@ ACE_Unbounded_Set_Ex_Iterator<T, C>::ACE_Unbounded_Set_Ex_Iterator (
}
template <class T, class C> int
-ACE_Unbounded_Set_Ex_Iterator<T, C>::advance (void)
+ACE_Unbounded_Set_Ex_Iterator<T, C>::advance ()
{
// ACE_TRACE ("ACE_Unbounded_Set_Ex_Iterator<T, C>::advance");
this->current_ = this->current_->next_;
@@ -312,7 +312,7 @@ ACE_Unbounded_Set_Ex_Iterator<T, C>::advance (void)
}
template <class T, class C> int
-ACE_Unbounded_Set_Ex_Iterator<T, C>::first (void)
+ACE_Unbounded_Set_Ex_Iterator<T, C>::first ()
{
// ACE_TRACE ("ACE_Unbounded_Set_Ex_Iterator<T, C>::first");
this->current_ = this->set_->head_->next_;
@@ -320,7 +320,7 @@ ACE_Unbounded_Set_Ex_Iterator<T, C>::first (void)
}
template <class T, class C> int
-ACE_Unbounded_Set_Ex_Iterator<T, C>::done (void) const
+ACE_Unbounded_Set_Ex_Iterator<T, C>::done () const
{
ACE_TRACE ("ACE_Unbounded_Set_Ex_Iterator<T, C>::done");
@@ -353,7 +353,7 @@ ACE_Unbounded_Set_Ex_Iterator<T, C>::operator++ (int)
}
template <class T, class C> ACE_Unbounded_Set_Ex_Iterator<T, C>&
-ACE_Unbounded_Set_Ex_Iterator<T, C>::operator++ (void)
+ACE_Unbounded_Set_Ex_Iterator<T, C>::operator++ ()
{
// ACE_TRACE ("ACE_Unbounded_Set_Ex_Iterator<T, C>::operator++ (void)");
@@ -364,7 +364,7 @@ ACE_Unbounded_Set_Ex_Iterator<T, C>::operator++ (void)
}
template <class T, class C> T&
-ACE_Unbounded_Set_Ex_Iterator<T, C>::operator* (void)
+ACE_Unbounded_Set_Ex_Iterator<T, C>::operator* ()
{
//ACE_TRACE ("ACE_Unbounded_Set_Ex_Iterator<T, C>::operator*");
T *retv = 0;
@@ -393,7 +393,7 @@ ACE_Unbounded_Set_Ex_Iterator<T, C>::operator!= (const ACE_Unbounded_Set_Ex_Iter
ACE_ALLOC_HOOK_DEFINE_Tcc(ACE_Unbounded_Set_Ex_Const_Iterator)
template <class T, class C> void
-ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::dump (void) const
+ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::dump () const
{
#if defined (ACE_HAS_DUMP)
// ACE_TRACE ("ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::dump");
@@ -411,7 +411,7 @@ ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::ACE_Unbounded_Set_Ex_Const_Iterator (
}
template <class T, class C> int
-ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::advance (void)
+ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::advance ()
{
// ACE_TRACE ("ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::advance");
this->current_ = this->current_->next_;
@@ -419,7 +419,7 @@ ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::advance (void)
}
template <class T, class C> int
-ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::first (void)
+ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::first ()
{
// ACE_TRACE ("ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::first");
this->current_ = this->set_->head_->next_;
@@ -427,7 +427,7 @@ ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::first (void)
}
template <class T, class C> int
-ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::done (void) const
+ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::done () const
{
ACE_TRACE ("ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::done");
@@ -460,7 +460,7 @@ ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::operator++ (int)
}
template <class T, class C> ACE_Unbounded_Set_Ex_Const_Iterator<T, C>&
-ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::operator++ (void)
+ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::operator++ ()
{
// ACE_TRACE ("ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::operator++ (void)");
@@ -471,7 +471,7 @@ ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::operator++ (void)
}
template <class T, class C> T&
-ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::operator* (void)
+ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::operator* ()
{
//ACE_TRACE ("ACE_Unbounded_Set_Ex_Const_Iterator<T, C>::operator*");
T *retv = 0;