summaryrefslogtreecommitdiff
path: root/ace/Intrusive_List.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Intrusive_List.inl')
-rw-r--r--ace/Intrusive_List.inl25
1 files changed, 0 insertions, 25 deletions
diff --git a/ace/Intrusive_List.inl b/ace/Intrusive_List.inl
deleted file mode 100644
index 56371fdd030..00000000000
--- a/ace/Intrusive_List.inl
+++ /dev/null
@@ -1,25 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
-template<class T> ACE_INLINE int
-ACE_Intrusive_List<T>::empty (void) const
-{
- return this->head_ == 0;
-}
-
-template<class T> ACE_INLINE T *
-ACE_Intrusive_List<T>::head (void) const
-{
- return this->head_;
-}
-
-template<class T> ACE_INLINE T *
-ACE_Intrusive_List<T>::tail (void) const
-{
- return this->tail_;
-}
-
-ACE_END_VERSIONED_NAMESPACE_DECL