Salome HOME
Some forgotten return statments
authorjrt <jrt>
Fri, 5 Sep 2003 12:19:11 +0000 (12:19 +0000)
committerjrt <jrt>
Fri, 5 Sep 2003 12:19:11 +0000 (12:19 +0000)
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()