summaryrefslogtreecommitdiff
path: root/ACE/ace/Intrusive_List_Node.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Intrusive_List_Node.inl')
-rw-r--r--ACE/ace/Intrusive_List_Node.inl31
1 files changed, 0 insertions, 31 deletions
diff --git a/ACE/ace/Intrusive_List_Node.inl b/ACE/ace/Intrusive_List_Node.inl
deleted file mode 100644
index 0672be2f345..00000000000
--- a/ACE/ace/Intrusive_List_Node.inl
+++ /dev/null
@@ -1,31 +0,0 @@
-// -*- C++ -*-
-//
-// $Id$
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
-template<class T> ACE_INLINE T*
-ACE_Intrusive_List_Node<T>::prev (void) const
-{
- return this->prev_;
-}
-
-template<class T> ACE_INLINE void
-ACE_Intrusive_List_Node<T>::prev (T *x)
-{
- this->prev_ = x;
-}
-
-template<class T> ACE_INLINE T*
-ACE_Intrusive_List_Node<T>::next (void) const
-{
- return this->next_;
-}
-
-template<class T> ACE_INLINE void
-ACE_Intrusive_List_Node<T>::next (T *x)
-{
- this->next_ = x;
-}
-
-ACE_END_VERSIONED_NAMESPACE_DECL