summaryrefslogtreecommitdiff
path: root/ACE/ace/Unbounded_Set_Ex.inl
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.inl
parentfb7e13241cc5ebd590e32ec4343a75d53691cda6 (diff)
downloadATCD-6f91193f0b537d437645ae9e10823a519f547888.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/ace/Unbounded_Set_Ex.inl')
-rw-r--r--ACE/ace/Unbounded_Set_Ex.inl4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Unbounded_Set_Ex.inl b/ACE/ace/Unbounded_Set_Ex.inl
index bbb8772d6fc..65e8b67913f 100644
--- a/ACE/ace/Unbounded_Set_Ex.inl
+++ b/ACE/ace/Unbounded_Set_Ex.inl
@@ -4,14 +4,14 @@
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
template <class T, class C> ACE_INLINE bool
-ACE_Unbounded_Set_Ex<T,C>::is_empty (void) const
+ACE_Unbounded_Set_Ex<T,C>::is_empty () const
{
ACE_TRACE ("ACE_Unbounded_Set_Ex<T>::is_empty");
return this->head_ == this->head_->next_;
}
template <class T, class C> ACE_INLINE bool
-ACE_Unbounded_Set_Ex<T, C>::is_full (void) const
+ACE_Unbounded_Set_Ex<T, C>::is_full () const
{
ACE_TRACE ("ACE_Unbounded_Set_Ex<T>::is_full");
return 0; // We should implement a "node of last resort for this..."