From b9b28684ffdd9894837f99505ea3f01adebaadec Mon Sep 17 00:00:00 2001 From: dbv Date: Wed, 17 Feb 2016 14:25:40 +0300 Subject: [PATCH] Compilation fix --- src/SketchPlugin/SketchPlugin_Validators.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SketchPlugin/SketchPlugin_Validators.cpp b/src/SketchPlugin/SketchPlugin_Validators.cpp index a00da25cb..9b5b63cc1 100755 --- a/src/SketchPlugin/SketchPlugin_Validators.cpp +++ b/src/SketchPlugin/SketchPlugin_Validators.cpp @@ -477,9 +477,9 @@ bool SketchPlugin_FilletVertexValidator::isValid(const AttributePtr& theAttribut aFilletFeature->attribute(SketchPlugin_Constraint::ENTITY_B())); std::list> aPointsList = aPointsRefList->list(); - for(std::list>::const_iterator anIt = aPointsList.cbegin(); anIt != aPointsList.cend(); anIt++) { - ObjectPtr anObject = (*anIt).first; - AttributePtr aPointAttribute = (*anIt).second; + for(std::list>::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 -- 2.39.2