diff options
Diffstat (limited to 'ace/Unbounded_Set.inl')
-rw-r--r-- | ace/Unbounded_Set.inl | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/ace/Unbounded_Set.inl b/ace/Unbounded_Set.inl deleted file mode 100644 index 3f71cd2b498..00000000000 --- a/ace/Unbounded_Set.inl +++ /dev/null @@ -1,16 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -template <class T> ACE_INLINE int -ACE_Unbounded_Set<T>::is_empty (void) const -{ - ACE_TRACE ("ACE_Unbounded_Set<T>::is_empty"); - return this->head_ == this->head_->next_; -} - -template <class T> ACE_INLINE int -ACE_Unbounded_Set<T>::is_full (void) const -{ - ACE_TRACE ("ACE_Unbounded_Set<T>::is_full"); - return 0; // We should implement a "node of last resort for this..." -} |