libcsdbg  1.28
C++ exception (and generic) stack trace debug library
template<class T >
csdbg::node< T >::~node ( )
inlineprotectedvirtual

Object destructor.

Note
When the object is released memory pointed by m_data is released also, using operator delete

Definition at line 126 of file node.hpp.

127 {
128  delete m_data;
129  m_data = NULL;
130  m_link = NULL;
131 }
T * m_data
Node data.
Definition: node.hpp:44
node * m_link
Next node link (direct or XOR link)
Definition: node.hpp:42