summaryrefslogtreecommitdiff
path: root/ace/Unbounded_Queue.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Unbounded_Queue.inl')
-rw-r--r--ace/Unbounded_Queue.inl21
1 files changed, 0 insertions, 21 deletions
diff --git a/ace/Unbounded_Queue.inl b/ace/Unbounded_Queue.inl
deleted file mode 100644
index ea552e7d3d8..00000000000
--- a/ace/Unbounded_Queue.inl
+++ /dev/null
@@ -1,21 +0,0 @@
-// $Id$
-
-template <class T> ACE_INLINE size_t
-ACE_Unbounded_Queue<T>::size (void) const
-{
- return this->cur_size_;
-}
-
-template <class T> ACE_INLINE int
-ACE_Unbounded_Queue<T>::is_empty (void) const
-{
- // ACE_TRACE ("ACE_Unbounded_Queue<T>::is_empty");
- return this->head_ == this->head_->next_;
-}
-
-template <class T> ACE_INLINE int
-ACE_Unbounded_Queue<T>::is_full (void) const
-{
- // ACE_TRACE ("ACE_Unbounded_Queue<T>::is_full");
- return 0; // We should implement a "node of last resort for this..."
-}