From: dbv Date: Wed, 17 Feb 2016 11:25:40 +0000 (+0300) Subject: Compilation fix X-Git-Tag: V_2.2.0~111 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b9b28684ffdd9894837f99505ea3f01adebaadec;p=modules%2Fshaper.git Compilation fix --- 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