libcsdbg  1.28
C++ exception (and generic) stack trace debug library
csdbg::string::~string ( )
virtual

Object destructor.

Definition at line 186 of file string.cpp.

References m_data.

187 {
188  delete[] m_data;
189  m_data = NULL;
190 }
i8 * m_data
String data.
Definition: string.hpp:42