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

github.com/Ultimaker/CuraEngine.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjspijker <j.spijker@ultimaker.com>2022-11-07 11:08:40 +0300
committerjspijker <j.spijker@ultimaker.com>2022-11-07 11:08:40 +0300
commit18e2df769d7af06f1ef06d47dc9167b6395cbedb (patch)
treed87e38adee74287fe47e64ca227f888f687345f8
parent8e2cc408f94c30e90e976b23b4f7e73e7e57aeac (diff)
Order includes
Contributes to CURA-9775
-rw-r--r--tests/WallsComputationTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/WallsComputationTest.cpp b/tests/WallsComputationTest.cpp
index 6e51286e1..449331743 100644
--- a/tests/WallsComputationTest.cpp
+++ b/tests/WallsComputationTest.cpp
@@ -1,8 +1,8 @@
// Copyright (c) 2022 Ultimaker B.V.
// CuraEngine is released under the terms of the AGPLv3 or higher
-#include "WallsComputation.h" //Unit under test.
#include "InsetOrderOptimizer.h" //Unit also under test.
+#include "WallsComputation.h" //Unit under test.
#include "settings/Settings.h" //Settings to generate walls with.
#include "sliceDataStorage.h" //Sl
#include "utils/polygon.h" //To create example polygons.