[Part] Extrusion: fix CI compiler warning

fixes "warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int'"
This commit is contained in:
Uwe
2022-01-30 22:46:07 +01:00
parent 729cd4a7c0
commit 89e623e1b7

View File

@@ -587,7 +587,7 @@ void Extrusion::checkInnerWires(std::vector<bool>& isInnerWire, const gp_Dir dir
GProp_GProps tempProperties;
Standard_Real momentOfInertiaInitial;
Standard_Real momentOfInertiaFinal;
int numCheckWires = 0;
size_t numCheckWires = 0;
std::vector<bool>::iterator isInnerWireIterator = isInnerWire.begin();
std::vector<bool>::iterator toCheckIterator = checklist.begin();
// create an array with false used later to store what can be cancelled from the checklist