From ee65a45bef3fe6a632abbe4f281cab55a6ff64fe Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 8 Aug 2024 19:55:32 +0200 Subject: [PATCH] Vararg functions can't be inlined. --- public/client/TracyScoped.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/client/TracyScoped.hpp b/public/client/TracyScoped.hpp index d80953aa..8e81c998 100644 --- a/public/client/TracyScoped.hpp +++ b/public/client/TracyScoped.hpp @@ -126,7 +126,7 @@ public: TracyQueueCommit( zoneTextFatThread ); } - tracy_force_inline void TextFmt( const char* fmt, ... ) + void TextFmt( const char* fmt, ... ) { if( !m_active ) return; #ifdef TRACY_ON_DEMAND @@ -165,7 +165,7 @@ public: TracyQueueCommit( zoneTextFatThread ); } - tracy_force_inline void NameFmt( const char* fmt, ... ) + void NameFmt( const char* fmt, ... ) { if( !m_active ) return; #ifdef TRACY_ON_DEMAND