Files
textmate/Frameworks/CrashReporter/src/utility.cc
2013-03-20 11:30:40 +01:00

16 lines
359 B
C++

#include "utility.h"
/* CrashReporter info */
char const* __crashreporter_info__ = NULL;
asm(".desc ___crashreporter_info__, 0x10");
crash_reporter_info_t::crash_reporter_info_t (std::string const& string) : _string(string)
{
__crashreporter_info__ = _string.c_str();
}
crash_reporter_info_t::~crash_reporter_info_t ()
{
__crashreporter_info__ = NULL;
}