mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-15 02:37:51 -06:00
Fixing some compilation warnings
This commit is contained in:
parent
95c5763b83
commit
ba5e8860cb
3 changed files with 3 additions and 5 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue