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 );
for( uint64_t i=0; i<sz; i++ )
{
uint64_t ptr, tsz;
uint64_t ptr;
f.Read( &ptr, sizeof( ptr ) );
auto msgdata = m_slab.Alloc<MessageData>();
f.Read( msgdata, sizeof( *msgdata ) );