Salome HOME
Some forgotten return statments
[modules/smesh.git] / src / SMDS / SMDS_MeshNode.cxx
index 271d53fe08327e422c8410adcf8fe85667189fef..20bce63695892d324ac8962a3daa3706a4ffa370 100644 (file)
@@ -97,7 +97,7 @@ SMDS_Iterator<const SMDS_MeshElement*> * SMDS_MeshNode::
 
                bool more()
                {
 
                bool more()
                {
-                       myIterator!=mySet.end();
+                       return myIterator!=mySet.end();
                }
 
                const SMDS_MeshElement* next()
                }
 
                const SMDS_MeshElement* next()
@@ -143,7 +143,7 @@ SMDS_Iterator<const SMDS_MeshElement *> * SMDS_MeshNode::
 
                bool more()
                {
 
                bool more()
                {
-                       myIterator!=mySet.end();
+                       return myIterator!=mySet.end();
                }
 
                const SMDS_MeshElement* next()
                }
 
                const SMDS_MeshElement* next()