fix pedantic warning about additional ;

This commit is contained in:
Moritz Kobitzsch 2017-08-18 15:38:56 +02:00
parent 884ce4025b
commit 74e1d1c27a

View File

@ -34,7 +34,7 @@ template <typename restriction_type> auto asDuplicatedNode(const restriction_typ
auto &way = restriction.AsWayRestriction(); auto &way = restriction.AsWayRestriction();
// group restrictions by the via-way. On same via-ways group by from // group restrictions by the via-way. On same via-ways group by from
return std::tie(way.in_restriction.via, way.out_restriction.via, way.in_restriction.from); return std::tie(way.in_restriction.via, way.out_restriction.via, way.in_restriction.from);
}; }
template <typename restriction_type> struct CompareByDuplicatedNode template <typename restriction_type> struct CompareByDuplicatedNode
{ {