libcsdbg  1.28
C++ exception (and generic) stack trace debug library
template<class T >
node< T > & csdbg::node< T >::link_to ( const node< T > *  n)
inlineprotectedvirtual

Link with a node (for XOR linking)

Parameters
[in]nthe node to link to (no-op if NULL)
Returns
*this

Definition at line 172 of file node.hpp.

Referenced by csdbg::chain< T >::add(), and csdbg::chain< T >::detach_node().

173 {
174  m_link = link(n);
175  return *this;
176 }
virtual node * link(const node *=NULL) const
Get the next node (using direct or XOR linking)
Definition: node.hpp:156
node * m_link
Next node link (direct or XOR link)
Definition: node.hpp:42

+ Here is the caller graph for this function: