blob: 3229ac744025fffb2423cd181a42db04ab2214ae (
plain) (
tree)
|
|
#include <absl/debugging/stacktrace.h>
namespace {
static struct TInitUnwinder {
TInitUnwinder() {
absl::SetStackUnwinder(DummyUnwinder);
}
static int DummyUnwinder(void**, int*, int, int, const void*, int*) {
return 0;
}
} init;
}
|