diff --git a/generator/emitter_simple.cpp b/generator/emitter_simple.cpp index 0eb14d6bc5..28f1836431 100644 --- a/generator/emitter_simple.cpp +++ b/generator/emitter_simple.cpp @@ -16,7 +16,11 @@ void EmitterSimple::GetNames(std::vector & 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)