Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVojtech Bubnik <bubnikv@gmail.com>2021-03-15 12:36:03 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-03-15 12:36:03 +0300
commitba5e8860cb166b0fb03421ed6c8f823ead819373 (patch)
treeb3247cb8d7ca485904b13bf2e43b37429eae3fbf /tests/libslic3r
parent95c5763b83a9f0cb85a62a12e8955825503b02ea (diff)
Fixing some compilation warnings
Diffstat (limited to 'tests/libslic3r')
-rw-r--r--tests/libslic3r/test_mutable_polygon.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/libslic3r/test_mutable_polygon.cpp b/tests/libslic3r/test_mutable_polygon.cpp
index 238e3604f..5a3c14441 100644
--- a/tests/libslic3r/test_mutable_polygon.cpp
+++ b/tests/libslic3r/test_mutable_polygon.cpp
@@ -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);