blob: ac393ca60075c1198146d1466168c23a181e53aa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#pragma once
static inline int GetStackTrace(void** /*result*/, int /*max_depth*/, int /*skip_count*/) noexcept {
return 0;
}
static inline bool GetStackExtent(void* /*sp*/, void** /*stack_top*/, void** /*stack_bottom*/ ) noexcept {
return false;
}
|