Skip to content

Commit

Permalink
format using clang 18
Browse files Browse the repository at this point in the history
  • Loading branch information
pablohoch committed Sep 10, 2024
1 parent a530223 commit 93a6a7a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/routing/input_areas.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,8 @@ void create_area_edges(area const* ar, std::vector<node*>& nodes,
std::vector<area::point> additional_points;
additional_points.reserve(nodes.size());
std::transform(begin(nodes), end(nodes),
std::back_inserter(additional_points), [](node* n) {
return area::point{n->location_, n};
});
std::back_inserter(additional_points),
[](node* n) { return area::point{n->location_, n}; });

auto vg = extend_visibility_graph(ar, additional_points); // NOLINT

Expand Down

0 comments on commit 93a6a7a

Please sign in to comment.