summaryrefslogtreecommitdiff
path: root/ACE/ace/Unbounded_Queue.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Unbounded_Queue.inl')
-rw-r--r--ACE/ace/Unbounded_Queue.inl6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Unbounded_Queue.inl b/ACE/ace/Unbounded_Queue.inl
index b3e76ad999d..0ff0cecc476 100644
--- a/ACE/ace/Unbounded_Queue.inl
+++ b/ACE/ace/Unbounded_Queue.inl
@@ -2,20 +2,20 @@
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
template <class T> ACE_INLINE size_t
-ACE_Unbounded_Queue<T>::size (void) const
+ACE_Unbounded_Queue<T>::size () const
{
return this->cur_size_;
}
template <class T> ACE_INLINE bool
-ACE_Unbounded_Queue<T>::is_empty (void) const
+ACE_Unbounded_Queue<T>::is_empty () const
{
// ACE_TRACE ("ACE_Unbounded_Queue<T>::is_empty");
return this->head_ == this->head_->next_;
}
template <class T> ACE_INLINE bool
-ACE_Unbounded_Queue<T>::is_full (void) const
+ACE_Unbounded_Queue<T>::is_full () const
{
// ACE_TRACE ("ACE_Unbounded_Queue<T>::is_full");
return false; // We should implement a "node of last resort for this..."