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

fix coding style

This commit is contained in:
Tiago Rodrigues
2023-11-13 13:43:03 -05:00
parent 5f60ac7ad2
commit c373647dae
3 changed files with 16 additions and 18 deletions
+7 -8
View File
@@ -8,14 +8,13 @@
#if TRACY_HAS_CALLSTACK == 2 || TRACY_HAS_CALLSTACK == 5
# include <unwind.h>
#elif TRACY_HAS_CALLSTACK >= 3
#ifdef TRACE_CLIENT_LIBUNWIND_BACKTRACE
// libunwind is in general significantly faster than execinfo based backtraces
#define UNW_LOCAL_ONLY
# include <libunwind.h>
#else
# include <execinfo.h>
#endif
# ifdef TRACE_CLIENT_LIBUNWIND_BACKTRACE
// libunwind is, in general, significantly faster than execinfo based backtraces
# define UNW_LOCAL_ONLY
# include <libunwind.h>
# else
# include <execinfo.h>
# endif
#endif
#ifndef TRACY_HAS_CALLSTACK