Fixing one more Win32 warning

This commit is contained in:
Vojtech Bubnik 2021-02-11 08:42:45 +01:00
parent 2cb3754af4
commit d39fd54e4f

View File

@ -781,7 +781,7 @@ namespace SupportMaterialInternal {
{
for (const ExtrusionPath &ep : loop.paths)
if (ep.role() == erOverhangPerimeter && ! ep.polyline.empty())
return ep.size() >= (ep.is_closed() ? 3 : 2);
return int(ep.size()) >= (ep.is_closed() ? 3 : 2);
return false;
}
static bool has_bridging_perimeters(const ExtrusionEntityCollection &perimeters)