prime/include/Kyoto/Alloc/CCallStack.hpp
Phillip Stephens 9a35941d7c Remove CCallStack hack
Former-commit-id: 20ccef8a331084e5451fe3f5e0f09f976ed48600
2022-10-14 21:33:23 -07:00

20 lines
368 B
C++

#ifndef _CCALLSTACK
#define _CCALLSTACK
#include <types.h>
class CCallStack {
static const char kUnknownType[];
public:
CCallStack(uint lineNum, const char* lineStr, const char* type = kUnknownType);
const char* GetFileAndLineText() const;
const char* GetTypeText() const;
private:
const char* x0_line;
const char* x4_type;
};
#endif // _CCALLSTACK