From 9cb12a05b3ccdef163bbc0469bd0d81c9bf397b9 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 26 Sep 2017 01:45:59 +0200 Subject: [PATCH] Silence warning. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 3c46546f..1a13f8cb 100755 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -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; }