diff --git a/.github/workflows/osrm-backend.yml b/.github/workflows/osrm-backend.yml index 790c43e47..be505fdf6 100644 --- a/.github/workflows/osrm-backend.yml +++ b/.github/workflows/osrm-backend.yml @@ -673,8 +673,8 @@ jobs: run: | python3 pr/scripts/ci/post_benchmark_results.py base_results pr_results - ci-complete: - runs-on: ubuntu-22.04 - needs: [build-test-publish, docker-image, windows-release-node, benchmarks] - steps: - - run: echo "CI complete" + # ci-complete: + # runs-on: ubuntu-22.04 + # needs: [build-test-publish, docker-image, windows-release-node, benchmarks] + # steps: + # - run: echo "CI complete" diff --git a/include/extractor/restriction.hpp b/include/extractor/restriction.hpp index 0c3787454..cfd3e1759 100644 --- a/include/extractor/restriction.hpp +++ b/include/extractor/restriction.hpp @@ -1,10 +1,10 @@ #ifndef RESTRICTION_HPP #define RESTRICTION_HPP +#include "turn_path.hpp" #include "util/coordinate.hpp" #include "util/opening_hours.hpp" #include "util/typedefs.hpp" -#include "turn_path.hpp" #include namespace osrm::extractor diff --git a/include/util/geojson_debug_policy_toolkit.hpp b/include/util/geojson_debug_policy_toolkit.hpp index 8625cb8f8..bcc36a3aa 100644 --- a/include/util/geojson_debug_policy_toolkit.hpp +++ b/include/util/geojson_debug_policy_toolkit.hpp @@ -58,8 +58,10 @@ struct CoordinateToJsonArray util::json::Array operator()(const util::Coordinate coordinate) { util::json::Array json_coordinate; - json_coordinate.values.emplace_back(util::json::Number{static_cast(toFloating(coordinate.lon))}); - json_coordinate.values.emplace_back(util::json::Number{static_cast(toFloating(coordinate.lat))}); + json_coordinate.values.emplace_back( + util::json::Number{static_cast(toFloating(coordinate.lon))}); + json_coordinate.values.emplace_back( + util::json::Number{static_cast(toFloating(coordinate.lat))}); return json_coordinate; } };