mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-24 16:30:34 +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)
|
||||
{
|
||||
save << _begLength << _endLength;
|
||||
save << _begLength << " " << _endLength;
|
||||
return save;
|
||||
}
|
||||
|
||||
|
@ -98,7 +98,7 @@ double StdMeshers_StartEndLength::GetLength(bool isStartLength) const
|
||||
|
||||
ostream & StdMeshers_StartEndLength::SaveTo(ostream & save)
|
||||
{
|
||||
save << _begLength << _endLength;
|
||||
save << _begLength << " " <<_endLength;
|
||||
return save;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user