]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
Compilation fix
authordbv <dbv@opencascade.com>
Wed, 17 Feb 2016 11:25:40 +0000 (14:25 +0300)
committerdbv <dbv@opencascade.com>
Wed, 17 Feb 2016 11:25:40 +0000 (14:25 +0300)
src/SketchPlugin/SketchPlugin_Validators.cpp

index a00da25cbba418085e8771ae67d651002576b460..9b5b63cc10bdd4cb96642eb5547289148396a1e5 100755 (executable)
@@ -477,9 +477,9 @@ bool SketchPlugin_FilletVertexValidator::isValid(const AttributePtr& theAttribut
     aFilletFeature->attribute(SketchPlugin_Constraint::ENTITY_B()));
 
   std::list<std::pair<ObjectPtr, AttributePtr>> aPointsList = aPointsRefList->list();
-  for(std::list<std::pair<ObjectPtr, AttributePtr>>::const_iterator anIt = aPointsList.cbegin(); anIt != aPointsList.cend(); anIt++) {
-    ObjectPtr anObject = (*anIt).first;
-    AttributePtr aPointAttribute = (*anIt).second;
+  for(std::list<std::pair<ObjectPtr, AttributePtr>>::const_iterator aPointsIt = aPointsList.cbegin(); aPointsIt != aPointsList.cend(); aPointsIt++) {
+    ObjectPtr anObject = (*aPointsIt).first;
+    AttributePtr aPointAttribute = (*aPointsIt).second;
 
     // If we alredy have some result then:
     // - if it is the same point all ok, just skip it