feat: log stacktrace implementation used (#1769)

This commit is contained in:
iTrooz
2024-06-22 21:33:52 +02:00
committed by GitHub
parent b93fd523aa
commit 65dfd4da0f
3 changed files with 22 additions and 11 deletions

View File

@@ -15,6 +15,11 @@ namespace hex::stacktrace {
void initialize();
std::vector<StackFrame> getStackTrace();
struct StackTraceResult {
std::vector<StackFrame> stackFrames;
std::string implementationName;
};
StackTraceResult getStackTrace();
}