Skip to content

Commit

Permalink
fix: remove remaining policies
Browse files Browse the repository at this point in the history
  • Loading branch information
barendgehrels committed Jul 31, 2024
1 parent 6b76894 commit 9cff67b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 4 additions & 4 deletions test/algorithms/buffer/test_buffer_svg.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -382,13 +382,13 @@ public :
}
}

template <typename Mapper, typename Geometry, typename Strategy, typename RescalePolicy>
void map_self_ips(Mapper& mapper, Geometry const& geometry, Strategy const& strategy, RescalePolicy const& rescale_policy)
template <typename Mapper, typename Geometry, typename Strategy>
void map_self_ips(Mapper& mapper, Geometry const& geometry, Strategy const& strategy)
{
using turn_info = bg::detail::overlay::turn_info
<
Point,
typename bg::detail::segment_ratio_type<Point, RescalePolicy>::type
typename bg::segment_ratio_type<Point>::type
>;

std::vector<turn_info> turns;
Expand All @@ -397,7 +397,7 @@ public :
bg::self_turns
<
bg::detail::overlay::assign_null_policy
>(geometry, strategy, rescale_policy, turns, policy);
>(geometry, strategy, turns, policy);

for (turn_info const& turn : turns)
{
Expand Down
1 change: 0 additions & 1 deletion test/policies/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

foreach(item IN ITEMS
compare
rescale_policy
)
boost_geometry_add_unit_test("policies" ${item})
endforeach()

0 comments on commit 9cff67b

Please sign in to comment.