File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1431,7 +1431,8 @@ bool PadDirectConnectionStraps::refineShapes(
14311431 return false ;
14321432 }
14331433
1434- refine.erase (std::unique (refine.begin (), refine.end ()), refine.end ());
1434+ const auto [first, last] = std::ranges::unique (refine.begin (), refine.end ());
1435+ refine.erase (first, last);
14351436
14361437 for (auto * refine_shape : refine) {
14371438 std::unique_ptr<Shape> shape = refine_shape->copy ();
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ MANUAL_TESTS = [
139139
140140# TODO: Enable once difference between bazel and ctest is resolved.
141141MANUAL_FOR_BAZEL_TESTS = [
142- "pads_black_parrot_flipchip_connect_overpads"
142+ "pads_black_parrot_flipchip_connect_overpads" ,
143143]
144144
145145ALL_TESTS = COMPULSORY_TESTS + MANUAL_TESTS
You can’t perform that action at this time.
0 commit comments