diff --git a/include/extractor/guidance/segregated_intersection_classification.hpp b/include/extractor/guidance/segregated_intersection_classification.hpp index bebb59eb2..8007ca53e 100644 --- a/include/extractor/guidance/segregated_intersection_classification.hpp +++ b/include/extractor/guidance/segregated_intersection_classification.hpp @@ -20,8 +20,8 @@ namespace guidance // - middle edges between two osm ways in one logic road (U-turn) // - staggered intersections (X-cross) // - square/circle intersections -std::unordered_set findSegregatedNodes(const NodeBasedGraphFactory &factory, const util::NameTable& names); -} - +std::unordered_set findSegregatedNodes(const NodeBasedGraphFactory &factory, + const util::NameTable &names); +} } } diff --git a/src/extractor/extractor.cpp b/src/extractor/extractor.cpp index 0ed977c53..a278dcd02 100644 --- a/src/extractor/extractor.cpp +++ b/src/extractor/extractor.cpp @@ -841,7 +841,5 @@ void Extractor::WriteCompressedNodeBasedGraph(const std::string &path, } } - - } // namespace extractor } // namespace osrm diff --git a/src/extractor/guidance/segregated_intersection_classification.cpp b/src/extractor/guidance/segregated_intersection_classification.cpp index 5a0b2ef0e..5b95820b9 100644 --- a/src/extractor/guidance/segregated_intersection_classification.cpp +++ b/src/extractor/guidance/segregated_intersection_classification.cpp @@ -238,7 +238,6 @@ std::unordered_set findSegregatedNodes(const NodeBasedGraphFactory &fact return segregated_edges; } - } } }