From 98566bc7e64a925faf914314d9bbac83bfddf2b2 Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Mon, 18 Dec 2017 15:45:04 +0000 Subject: [PATCH] Fix broken assertion after rebase --- src/extractor/guidance/sliproad_handler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extractor/guidance/sliproad_handler.cpp b/src/extractor/guidance/sliproad_handler.cpp index a1e88991a..55fe6bfaf 100644 --- a/src/extractor/guidance/sliproad_handler.cpp +++ b/src/extractor/guidance/sliproad_handler.cpp @@ -601,7 +601,7 @@ operator()(const NodeID /*nid*/, const EdgeID source_edge_id, Intersection inter } else if (!name_table.GetNameForID(main_annotation.name_id).empty()) { - OSRM_ASSERT(false, coordinates[intersection_node_id]); + OSRM_ASSERT(false, node_coordinates[intersection_node_id]); intersection[*obvious].instruction.type = TurnType::NewName; intersection[*obvious].instruction.direction_modifier = getTurnDirection(intersection[*obvious].angle);