[generator] Build fix.

This commit is contained in:
Yuri Gorshenin 2017-10-11 12:44:53 +03:00 committed by mpimenov
parent c816586c08
commit 6193185139
2 changed files with 1 additions and 6 deletions

View file

@ -117,11 +117,6 @@ public:
m_features.emplace(fb.GetMostGenericOsmId(), fb);
}
void EmitCityBoundary(FeatureBuilder1 const & /* fb */,
FeatureParams const & /* params */) override
{
}
void GetNames(vector<string> & names) const override
{
names.clear();

View file

@ -45,7 +45,7 @@ public:
/// This method is used by OsmTranslator to pass |fb| to Emitter for further processing.
virtual void operator()(FeatureBuilder1 & fb) = 0;
virtual void EmitCityBoundary(FeatureBuilder1 const & fb, FeatureParams const & params) = 0;
virtual void EmitCityBoundary(FeatureBuilder1 const & fb, FeatureParams const & params) {}
/// Finish is used in GenerateFeatureImpl to make whatever work is needed after
/// all OmsElements are processed.