libcsdbg  1.28
C++ exception (and generic) stack trace debug library
template<class T >
T * csdbg::chain< T >::detach ( u32  i)
inlinevirtual

Detach the node at a chain offset.

Parameters
[in]ithe offset
Returns
the detached i-th node data pointer
Exceptions
csdbg::exception

Definition at line 456 of file chain.hpp.

References csdbg::node< T >::detach().

457 {
458  node<T> *n = detach_node(i);
459  T *d = n->detach();
460  delete n;
461  return d;
462 }
virtual node< T > * detach_node(u32)
Detach the node at a chain offset.
Definition: chain.hpp:167

+ Here is the call graph for this function: