From 6f72a62607e0de2034f0217c1c8bbb4b26b9f610 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Tue, 12 Dec 2023 16:08:47 +0100 Subject: [PATCH] Fix build CURA-11098 --- src/support.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support.cpp b/src/support.cpp index c1e653c77a..d669cf38e2 100644 --- a/src/support.cpp +++ b/src/support.cpp @@ -898,7 +898,7 @@ Polygons AreaSupport::generateVaryingXYDisallowedArea(const SliceMeshStorage& st for (auto [current_point_idx, current_point] : current_poly | ranges::views::enumerate) { auto min_dist2 = std::numeric_limits::max(); - Point min_point; + Point2LL min_point; for (auto delta_poly : layer_delta) {