remove redundant code from switch statement in restriction parser

This commit is contained in:
Dennis Luxen 2015-01-23 09:25:05 +01:00
parent 796cbafde4
commit 8e105af232

View File

@ -192,10 +192,9 @@ RestrictionParser::TryParse(const osmium::Relation &relation) const
break; break;
case osmium::item_type::relation: case osmium::item_type::relation:
// not yet supported, but who knows what the future holds... // not yet supported, but who knows what the future holds...
continue;
break; break;
default: default:
BOOST_ASSERT(false); // shouldn't ever happen
break; break;
} }
} }