No need to populate string map when loading dump.

This commit is contained in:
Bartosz Taudul 2017-11-21 02:16:58 +01:00
parent d5ea8a86a4
commit a7e85c5b76

View File

@ -230,7 +230,6 @@ View::View( FileRead& f )
auto dst = m_slab.Alloc<char>( ssz+1 );
f.Read( dst, ssz );
dst[ssz] = '\0';
m_stringMap.emplace( dst, m_stringData.size() );
m_stringData.push_back( dst );
pointerMap.emplace( ptr, dst );
}