structural changes, motorway handling

This commit is contained in:
Moritz Kobitzsch
2016-02-26 17:33:18 +01:00
committed by Patrick Niklaus
parent 3fa9672d9a
commit b06dddaf5e
6 changed files with 929 additions and 132 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ struct NodeBasedEdgeData
bool IsCompatibleTo(const NodeBasedEdgeData &other) const
{
return (reversed == other.reversed) && (name_id == other.name_id) &&
(travel_mode == other.travel_mode);
(travel_mode == other.travel_mode && road_classification == other.road_classification);
}
};