Silence warning.

This commit is contained in:
Bartosz Taudul 2017-09-26 01:45:59 +02:00
parent 809d98162b
commit 9cb12a05b3

View File

@ -359,7 +359,7 @@ void View::NewZone( Event* zone, uint64_t thread )
auto it = m_threadMap.find( thread );
if( it == m_threadMap.end() )
{
m_threadMap.emplace( thread, m_threads.size() );
m_threadMap.emplace( thread, (uint32_t)m_threads.size() );
m_threads.push_back( ThreadData { thread } );
timeline = &m_threads.back().timeline;
}