From ed0bc021de1f0a44ed89da265ad93e428a8bf42b Mon Sep 17 00:00:00 2001 From: Artem Zhidkov Date: Sun, 17 May 2020 14:07:57 +0300 Subject: [PATCH] Fix hang up on unit tests --- src/FeaturesPlugin/FeaturesPlugin_CompositeBoolean.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.2