From: Artem Zhidkov Date: Sun, 17 May 2020 11:07:57 +0000 (+0300) Subject: Fix hang up on unit tests X-Git-Tag: V9_5_0b1~2^2~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ed0bc021de1f0a44ed89da265ad93e428a8bf42b;p=modules%2Fshaper.git Fix hang up on unit tests --- diff --git a/src/FeaturesPlugin/FeaturesPlugin_CompositeBoolean.cpp b/src/FeaturesPlugin/FeaturesPlugin_CompositeBoolean.cpp index 4ab108ec7..cf8706cac 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_CompositeBoolean.cpp +++ b/src/FeaturesPlugin/FeaturesPlugin_CompositeBoolean.cpp @@ -289,7 +289,7 @@ bool FeaturesPlugin_CompositeBoolean::makeBoolean(const ListOfShape& theTools, { GeomShapePtr aSolidInCompSolid = aCompSolidIt.current(); ListOfShape::iterator aUseIt = aUsedShapes.begin(); - for(; aUseIt != aUsedShapes.end(); anIt++) { + for(; aUseIt != aUsedShapes.end(); aUseIt++) { if(aSolidInCompSolid->isEqual(*aUseIt)) { break; }