From 83f309c1901f3c6ee0b4c1a41ff2a06555732503 Mon Sep 17 00:00:00 2001 From: Matthew Wigginton Bhagat-Conway Date: Wed, 29 Nov 2023 14:25:42 -0500 Subject: [PATCH] Namespace correction based on code review Co-authored-by: Michael Bell --- include/extractor/extraction_segment.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/extractor/extraction_segment.hpp b/include/extractor/extraction_segment.hpp index 388ca7a24..3e5f950f8 100644 --- a/include/extractor/extraction_segment.hpp +++ b/include/extractor/extraction_segment.hpp @@ -13,7 +13,7 @@ struct ExtractionSegment double distance_, double weight_, double duration_, - const osrm::extractor::NodeBasedEdgeClassification flags_) + const NodeBasedEdgeClassification flags_) : source(source_), target(target_), distance(distance_), weight(weight_), duration(duration_), flags(flags_) { @@ -24,7 +24,7 @@ struct ExtractionSegment const double distance; double weight; double duration; - const osrm::extractor::NodeBasedEdgeClassification flags; + const NodeBasedEdgeClassification flags; }; } // namespace osrm::extractor