From 4e9121eb2fa1b71090eb087f3347b1fba51d3a57 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 18 Aug 2026 00:28:32 +0200 Subject: [PATCH] Typos. --- public/client/TracyDebug.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/client/TracyDebug.hpp b/public/client/TracyDebug.hpp index 56588117..da8233a0 100644 --- a/public/client/TracyDebug.hpp +++ b/public/client/TracyDebug.hpp @@ -21,8 +21,8 @@ #ifdef TRACY_VERBOSE # include # define TracyDebug(...) do { fprintf( stderr, __VA_ARGS__ ); fputc( '\n', stderr ); } while( 0 ) -// Note: We can't use LogString when using TRACY_DELAYED_INIT due to a deadlock in the init code. -// This is caused by `GetProfilerData` triggerting ProfileData ctor, which itself will call `GetProfilerData` and deadlock. +// Note: We can't use LogString when using TRACY_DELAYED_INIT due to a deadlock in the init code. +// This is caused by `GetProfilerData` triggering ProfileData ctor, which itself will call `GetProfilerData` and deadlock. // TRACY_MANUAL_LIFETIME does not have this issue since StartupProfiler sets s_profilerData before calling the constructor. // In general, this also means we can only call TracyDebug after and the first logging is after queue initialization and critical init (such as InitCallstackCritical). #elif !defined(TRACY_NO_INTERNAL_MESSAGE) && (!defined(TRACY_DELAYED_INIT) || defined(TRACY_MANUAL_LIFETIME))