D | assert_checkpoint.h | 8 struct Checkpoint { struct 14 Checkpoint() : file(nullptr), func(nullptr), line(-1), msg(nullptr) {} in Checkpoint() argument 15 Checkpoint(const char* xfile, const char* xfunc, int xline, const char* xmsg) in Checkpoint() function 32 inline Checkpoint& globalCheckpoint() { in globalCheckpoint() 33 static Checkpoint C; in globalCheckpoint() 38 globalCheckpoint() = Checkpoint(); in clearCheckpoint() 47 #define CHECKPOINT(msg) globalCheckpoint() = Checkpoint(__FILE__, CHECKPOINT_FUNCTION_NAME, __LINE_…
|