From 9ad8767c418340987ebc343fd9b7278bf988f108 Mon Sep 17 00:00:00 2001 From: mac Date: Thu, 25 May 2000 07:17:23 +0000 Subject: [PATCH] Changed default printOn to have a trailing space instead of endl --- eo/src/EO.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/src/EO.h b/eo/src/EO.h index 85a59c03..626c662c 100644 --- a/eo/src/EO.h +++ b/eo/src/EO.h @@ -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 } //@}