ported double tracking from TC

This commit is contained in:
mikx
2020-10-30 23:45:46 -04:00
commit 44b1f31c23
4914 changed files with 4961129 additions and 0 deletions

22
deps/acelite/ace/Containers.inl vendored Normal file
View File

@@ -0,0 +1,22 @@
// -*- C++ -*-
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
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_END_VERSIONED_NAMESPACE_DECL