1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Rename has_stacktrace -> has_callstack

This commit is contained in:
Igor S. Gerasimov
2024-12-27 11:43:00 +01:00
parent 9aba23bbb0
commit a2fce55aee
4 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -9,7 +9,7 @@
namespace tracy
{
static constexpr bool has_stacktrace() { return false; }
static constexpr bool has_callstack() { return false; }
static tracy_force_inline void* Callstack( int /*depth*/ ) { return nullptr; }
}
@@ -39,7 +39,7 @@ static tracy_force_inline void* Callstack( int /*depth*/ ) { return nullptr; }
namespace tracy
{
static constexpr bool has_stacktrace() { return true; }
static constexpr bool has_callstack() { return true; }
struct CallstackSymbolData
{