diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-12 17:18:34 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-12 17:18:34 +0000 |
commit | 16612c8dcaeae759182246473621022175a0d19e (patch) | |
tree | e982f260bd93cbecfe19702eaa71fe073ad6b84b | |
parent | 395bc0c375319a55a1e586c8eea53e5324b4cf28 (diff) | |
download | ATCD-16612c8dcaeae759182246473621022175a0d19e.tar.gz |
Removed bogus file
-rw-r--r-- | ace/Containers_bad.i | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/ace/Containers_bad.i b/ace/Containers_bad.i deleted file mode 100644 index 471a9d559d5..00000000000 --- a/ace/Containers_bad.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) -{ -} |