PAL7912. Fix SaveTo(ostream)

This commit is contained in:
eap 2005-01-28 11:14:18 +00:00
parent 5600ecf395
commit 0c22c61f19
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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;
}