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

GetThreadString() is no longer used.

This commit is contained in:
Bartosz Taudul
2019-08-28 20:08:16 +02:00
parent 28a20e631e
commit fd5014be6f
2 changed files with 0 additions and 14 deletions
-13
View File
@@ -1836,19 +1836,6 @@ const char* Worker::GetString( const StringIdx& idx ) const
return m_data.stringData[idx.idx];
}
const char* Worker::GetThreadString( uint64_t id ) const
{
const auto it = m_data.threadNames.find( id );
if( it == m_data.threadNames.end() )
{
return "???";
}
else
{
return it->second;
}
}
const char* Worker::GetThreadName( uint64_t id ) const
{
const auto it = m_data.threadNames.find( id );