mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-25 08:50:35 +05:00
PAL7912. Fix SaveTo(ostream)
This commit is contained in:
parent
5600ecf395
commit
0c22c61f19
@ -94,7 +94,7 @@ double StdMeshers_Arithmetic1D::GetLength(bool isStartLength) const
|
|||||||
|
|
||||||
ostream & StdMeshers_Arithmetic1D::SaveTo(ostream & save)
|
ostream & StdMeshers_Arithmetic1D::SaveTo(ostream & save)
|
||||||
{
|
{
|
||||||
save << _begLength << _endLength;
|
save << _begLength << " " << _endLength;
|
||||||
return save;
|
return save;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -98,7 +98,7 @@ double StdMeshers_StartEndLength::GetLength(bool isStartLength) const
|
|||||||
|
|
||||||
ostream & StdMeshers_StartEndLength::SaveTo(ostream & save)
|
ostream & StdMeshers_StartEndLength::SaveTo(ostream & save)
|
||||||
{
|
{
|
||||||
save << _begLength << _endLength;
|
save << _begLength << " " <<_endLength;
|
||||||
return save;
|
return save;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user