diff --git a/public/client/TracyCallstack.hpp b/public/client/TracyCallstack.hpp index fdc9345d..c7e104ca 100644 --- a/public/client/TracyCallstack.hpp +++ b/public/client/TracyCallstack.hpp @@ -9,6 +9,7 @@ namespace tracy { +static constexpr bool has_stacktrace() { return false; } static tracy_force_inline void* Callstack( int /*depth*/ ) { return nullptr; } } @@ -38,6 +39,8 @@ static tracy_force_inline void* Callstack( int /*depth*/ ) { return nullptr; } namespace tracy { +static constexpr bool has_stacktrace() { return true; } + struct CallstackSymbolData { const char* file;