impr: Print message if no stacktrace can be collected

This commit is contained in:
WerWolv
2023-07-20 21:41:22 +02:00
parent 7c203e0635
commit 7c321a79c3

View File

@@ -179,7 +179,7 @@
namespace hex::stacktrace {
void initialize() { }
std::vector<StackFrame> getStackTrace() { return { }; }
std::vector<StackFrame> getStackTrace() { return { StackFrame { "??", "Stacktrace collecting not available!", 0 } }; }
}