Changed default printOn to have a trailing space instead of endl
This commit is contained in:
parent
e7a1922d76
commit
9ad8767c41
1 changed files with 1 additions and 1 deletions
|
|
@ -114,7 +114,7 @@ public:
|
|||
* @param _os A ostream.
|
||||
*/
|
||||
virtual void printOn(ostream& _os) const {
|
||||
_os << repFitness << endl;
|
||||
_os << repFitness << ' '; // trailing space to make reading in that much easier
|
||||
}
|
||||
|
||||
//@}
|
||||
|
|
|
|||
Reference in a new issue