From 73da891805810751943df110af06f6fc382b07dd Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 11 Sep 2023 11:33:40 +0200 Subject: [PATCH] Remove std:: qualifier from size_t. --- public/common/TracySystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/common/TracySystem.cpp b/public/common/TracySystem.cpp index 301483eb..9a477aa3 100644 --- a/public/common/TracySystem.cpp +++ b/public/common/TracySystem.cpp @@ -224,7 +224,7 @@ TRACY_API const char* GetThreadName( uint32_t id ) auto ret = wcstombs( buf, tmp, 256 ); CloseHandle( hnd ); LocalFree( tmp ); - if( ret != static_cast( -1 ) ) + if( ret != static_cast( -1 ) ) { return buf; }