Fixed c/p typo.
This commit is contained in:
parent
1b819bfcc3
commit
c718f140fa
@ -67,8 +67,9 @@ struct NodeBasedEdgeAnnotation
|
||||
|
||||
bool CanCombineWith(const NodeBasedEdgeAnnotation &other) const
|
||||
{
|
||||
return (std::tie(name_id, classes, travel_mode, is_left_hand_driving) ==
|
||||
std::tie(other.name_id, other.classes, other.travel_mode, is_left_hand_driving));
|
||||
return (
|
||||
std::tie(name_id, classes, travel_mode, is_left_hand_driving) ==
|
||||
std::tie(other.name_id, other.classes, other.travel_mode, other.is_left_hand_driving));
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user