From: azv Date: Wed, 15 May 2019 07:17:47 +0000 (+0300) Subject: Fix too long line (>100 characters) X-Git-Tag: VEDF2019Lot4~139^2~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=689bd6ca04a18da1645152760ba12ca7c2de146d;p=modules%2Fshaper.git Fix too long line (>100 characters) --- diff --git a/src/FeaturesPlugin/FeaturesPlugin_Union.cpp b/src/FeaturesPlugin/FeaturesPlugin_Union.cpp index c2385e938..257ba22be 100644 --- a/src/FeaturesPlugin/FeaturesPlugin_Union.cpp +++ b/src/FeaturesPlugin/FeaturesPlugin_Union.cpp @@ -127,7 +127,8 @@ void FeaturesPlugin_Union::execute() ListOfShape anObjectsList = anObjects.Objects(); aResultBody->storeModified(anObjectsList.front(), aShape); - for(ListOfShape::const_iterator anIter = anObjectsList.begin(); anIter != anObjectsList.end(); ++anIter) { + for(ListOfShape::const_iterator anIter = anObjectsList.begin(); + anIter != anObjectsList.end(); ++anIter) { aResultBody->loadModifiedShapes(aMakeShapeList, *anIter, GeomAPI_Shape::EDGE); aResultBody->loadModifiedShapes(aMakeShapeList, *anIter, GeomAPI_Shape::FACE); //aResultBody->loadDeletedShapes(&aMakeShapeList, *anIter, GeomAPI_Shape::FACE, aDeletedTag);