kakoune/src/backtrace.hh

23 lines
300 B
C++
Raw Normal View History

#ifndef backtrace_hh_INCLUDED
#define backtrace_hh_INCLUDED
namespace Kakoune
{
2015-05-29 14:35:54 +02:00
class String;
struct Backtrace
{
static constexpr int max_frames = 16;
void* stackframes[max_frames];
int num_frames = 0;
Backtrace();
2015-05-29 14:35:54 +02:00
String desc() const;
};
}
#endif // backtrace_hh_INCLUDED