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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Turri <enricoturri@seznam.cz>2019-09-04 11:46:51 +0300
committerEnrico Turri <enricoturri@seznam.cz>2019-09-04 11:46:51 +0300
commit308f601a99c633ec6313d3ac404810bce4f36e4d (patch)
tree7a69201fe6d970c3c9a1fe95251bc18c89ff43eb /src/slic3r/GUI/BedShapeDialog.cpp
parent6bbc97f24d48e8513427388a5602480d73c4b2bd (diff)
Removed another bunch of compile warnings
Diffstat (limited to 'src/slic3r/GUI/BedShapeDialog.cpp')
-rw-r--r--src/slic3r/GUI/BedShapeDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/BedShapeDialog.cpp b/src/slic3r/GUI/BedShapeDialog.cpp
index a9be260bd..90fc0ff80 100644
--- a/src/slic3r/GUI/BedShapeDialog.cpp
+++ b/src/slic3r/GUI/BedShapeDialog.cpp
@@ -446,7 +446,7 @@ void BedShapePanel::update_shape()
auto twopi = 2 * PI;
auto edges = 72;
std::vector<Vec2d> points;
- for (size_t i = 1; i <= edges; ++i) {
+ for (int i = 1; i <= edges; ++i) {
auto angle = i * twopi / edges;
points.push_back(Vec2d(r*cos(angle), r*sin(angle)));
}