Remove std:: qualifier from size_t.

This commit is contained in:
Bartosz Taudul 2023-09-11 11:33:40 +02:00
parent 08a36e8dfd
commit 73da891805
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -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<std::size_t>( -1 ) )
if( ret != static_cast<size_t>( -1 ) )
{
return buf;
}