Fixed c/p typo.

This commit is contained in:
vng 2017-10-14 12:34:01 +03:00 committed by Michael Krasnyk
parent 1b819bfcc3
commit c718f140fa

View File

@ -67,8 +67,9 @@ struct NodeBasedEdgeAnnotation
bool CanCombineWith(const NodeBasedEdgeAnnotation &other) const bool CanCombineWith(const NodeBasedEdgeAnnotation &other) const
{ {
return (std::tie(name_id, classes, travel_mode, is_left_hand_driving) == return (
std::tie(other.name_id, other.classes, other.travel_mode, is_left_hand_driving)); 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));
} }
}; };