From c718f140fa46d1fa0ee432289152c4328e31453a Mon Sep 17 00:00:00 2001 From: vng Date: Sat, 14 Oct 2017 12:34:01 +0300 Subject: [PATCH] Fixed c/p typo. --- include/extractor/node_based_edge.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/extractor/node_based_edge.hpp b/include/extractor/node_based_edge.hpp index 40d95a973..a43b906ad 100644 --- a/include/extractor/node_based_edge.hpp +++ b/include/extractor/node_based_edge.hpp @@ -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)); } };