Salome HOME
Fix warning
[modules/smesh.git] / src / SMESH / SMESH_MeshEditor.cxx
index f1be17ded67725d6cf9560e10038938a16274e83..cb23d28430fa5d52c259231aa682e2302e418470 100644 (file)
@@ -9931,8 +9931,8 @@ bool SMESH_MeshEditor::AffectedElemGroupsInRegion( const TIDSortedElemSet& theEl
     // --- iterates on elements to be replicated and get elements by back references from their nodes
 
     TIDSortedElemSet::const_iterator elemItr = theElems.begin();
-    int ielem = 1;
-    for ( ;  elemItr != theElems.end(); ++elemItr )
+    int ielem;
+    for ( ielem=1;  elemItr != theElems.end(); ++elemItr )
     {
       SMDS_MeshElement* anElem = (SMDS_MeshElement*)*elemItr;
       if (!anElem || (anElem->GetType() != SMDSAbs_Face))
@@ -10034,8 +10034,8 @@ bool SMESH_MeshEditor::AffectedElemGroupsInRegion( const TIDSortedElemSet& theEl
 
     // iterates on indicated elements and get elements by back references from their nodes
     TIDSortedElemSet::const_iterator elemItr = theElems.begin();
-    int ielem = 1;
-    for ( ;  elemItr != theElems.end(); ++elemItr )
+    int ielem;
+    for ( ielem = 1;  elemItr != theElems.end(); ++elemItr )
     {
       MESSAGE("element " << ielem++);
       SMDS_MeshElement* anElem = (SMDS_MeshElement*)*elemItr;