Empties the sharedString map on reset on go and csharp (#6187)

Fixes go tests
This commit is contained in:
mustiikhalil
2020-10-26 22:38:24 +03:00
committed by GitHub
parent 914c646014
commit c7586e85aa
4 changed files with 48 additions and 1 deletions

View File

@@ -90,6 +90,10 @@ namespace FlatBuffers
_objectStart = 0;
_numVtables = 0;
_vectorNumElems = 0;
if (_sharedStringMap != null)
{
_sharedStringMap.Clear();
}
}
/// <summary>