1
0
mirror of https://github.com/wolfpld/tracy synced 2025-05-08 16:03:53 +00:00

Remove unused variable.

This commit is contained in:
Bartosz Taudul 2017-11-11 02:42:17 +01:00
parent ca4483ecf5
commit f1ac7e9d49

View File

@ -302,7 +302,7 @@ View::View( FileRead& f )
m_messages.reserve( sz ); m_messages.reserve( sz );
for( uint64_t i=0; i<sz; i++ ) for( uint64_t i=0; i<sz; i++ )
{ {
uint64_t ptr, tsz; uint64_t ptr;
f.Read( &ptr, sizeof( ptr ) ); f.Read( &ptr, sizeof( ptr ) );
auto msgdata = m_slab.Alloc<MessageData>(); auto msgdata = m_slab.Alloc<MessageData>();
f.Read( msgdata, sizeof( *msgdata ) ); f.Read( msgdata, sizeof( *msgdata ) );