summaryrefslogtreecommitdiff
path: root/ace/Containers.i
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Containers.i')
-rw-r--r--ace/Containers.i25
1 files changed, 0 insertions, 25 deletions
diff --git a/ace/Containers.i b/ace/Containers.i
deleted file mode 100644
index 1312f2a47a6..00000000000
--- a/ace/Containers.i
+++ /dev/null
@@ -1,25 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-ACE_INLINE
-ACE_DLList_Node::ACE_DLList_Node (void)
- : item_ (0),
- next_ (0),
- prev_ (0)
-{
-}
-
-ACE_INLINE
-ACE_DLList_Node::ACE_DLList_Node (void *&i,
- ACE_DLList_Node *n,
- ACE_DLList_Node *p)
- : item_ (i),
- next_ (n),
- prev_ (p)
-{
-}
-
-ACE_INLINE
-ACE_DLList_Node::~ACE_DLList_Node (void)
-{
-}