Merge pull request #4747 from Zverik/fix_int_name

[generator] Do not copy int_name from relations
This commit is contained in:
Arsentiy Milchakov 2016-11-24 18:56:05 +03:00 committed by GitHub
commit d0a4499bd7

View file

@ -188,7 +188,7 @@ protected:
TBase::AddCustomTag({"addr:street", p.second});
// Important! Skip all "name" tags.
if (strings::StartsWith(p.first, "name"))
if (strings::StartsWith(p.first, "name") || p.first == "int_name")
continue;
if (!isBoundary && p.first == "boundary")