summaryrefslogtreecommitdiff
path: root/ace/Intrusive_List_Node.inl
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Intrusive_List_Node.inl')
-rw-r--r--ace/Intrusive_List_Node.inl25
1 files changed, 0 insertions, 25 deletions
diff --git a/ace/Intrusive_List_Node.inl b/ace/Intrusive_List_Node.inl
deleted file mode 100644
index e7f2c5ee3eb..00000000000
--- a/ace/Intrusive_List_Node.inl
+++ /dev/null
@@ -1,25 +0,0 @@
-// $Id$
-
-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;
-}