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

Unlink from a node (for XOR linking)

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

Definition at line 187 of file node.hpp.

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

188 {
189  m_link = link(n);
190  return *this;
191 }
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: