mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-13 10:10:33 +05:00
Some forgotten return statments
This commit is contained in:
parent
ef932e4d05
commit
888669652e
@ -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()
|
||||||
|
Loading…
Reference in New Issue
Block a user