Merge pull request #10988 from cc-engineering/generator.simple-emitter-optimization

[generator] Optimize EmitterSimple
This commit is contained in:
Sergey Yershov 2019-06-03 14:42:29 +03:00 committed by GitHub
commit e2dd32a241
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,11 @@ void EmitterSimple::GetNames(std::vector<std::string> & names) const
void EmitterSimple::Process(FeatureBuilder1 & fb)
{
auto & polygonizer = m_regionGenerator->Parent();
// Emit each feature independently: clear current country names (see Polygonizer::GetCurrentNames()).
polygonizer.Start();
(*m_regionGenerator)(fb);
polygonizer.Finish();
}
void EmitterPreserialize::Process(FeatureBuilder1 & fb)