From 647b54302fd4ac3e980746be82ae8d4bec3af9af Mon Sep 17 00:00:00 2001 From: Uwe Date: Sun, 30 Jan 2022 22:46:07 +0100 Subject: [PATCH] [Part] Extrusion: fix CI compiler warning fixes "warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int'" --- src/Mod/Part/App/FeatureExtrusion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Part/App/FeatureExtrusion.cpp b/src/Mod/Part/App/FeatureExtrusion.cpp index 6ef9d11f47..73ec4e387a 100644 --- a/src/Mod/Part/App/FeatureExtrusion.cpp +++ b/src/Mod/Part/App/FeatureExtrusion.cpp @@ -587,7 +587,7 @@ void Extrusion::checkInnerWires(std::vector& isInnerWire, const gp_Dir dir GProp_GProps tempProperties; Standard_Real momentOfInertiaInitial; Standard_Real momentOfInertiaFinal; - int numCheckWires = 0; + size_t numCheckWires = 0; std::vector::iterator isInnerWireIterator = isInnerWire.begin(); std::vector::iterator toCheckIterator = checklist.begin(); // create an array with false used later to store what can be cancelled from the checklist