mirror of
https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git
synced 2026-05-14 13:02:39 -07:00
Fixing some compilation warnings
This commit is contained in:
@@ -46,7 +46,6 @@ SCENARIO("Iterators", "[MutablePolygon]") {
|
||||
}
|
||||
WHEN("Deleting 1st point") {
|
||||
auto it_2nd = p.begin().next();
|
||||
auto it_3rd = p.end();
|
||||
auto it = p.begin().remove();
|
||||
THEN("Size is 2") {
|
||||
REQUIRE(p.size() == 2);
|
||||
@@ -59,7 +58,6 @@ SCENARIO("Iterators", "[MutablePolygon]") {
|
||||
WHEN("Deleting 2nd point") {
|
||||
auto it_1st = p.begin();
|
||||
auto it_2nd = it_1st.next();
|
||||
auto it_3rd = p.end();
|
||||
auto it = it_2nd.remove();
|
||||
THEN("Size is 2") {
|
||||
REQUIRE(p.size() == 2);
|
||||
|
||||
Reference in New Issue
Block a user