From b9d74c0b55590e980a2173721ca266d7e9f3e68e Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Sun, 5 Sep 2010 23:56:17 +0200 Subject: [PATCH] replace \n with endl --- eo/src/utils/eoStdoutMonitor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eo/src/utils/eoStdoutMonitor.cpp b/eo/src/utils/eoStdoutMonitor.cpp index b0b3863d..95754de4 100644 --- a/eo/src/utils/eoStdoutMonitor.cpp +++ b/eo/src/utils/eoStdoutMonitor.cpp @@ -40,9 +40,9 @@ eoMonitor& eoStdoutMonitor::operator()(void) { for(iterator it = vec.begin(); it != vec.end(); ++it) { - cout << (*it)->longName() << ": " << (*it)->getValue() << '\n'; + cout << (*it)->longName() << ": " << (*it)->getValue() << endl; } - eo::log << eo::progress << "End of Generation\n" << endl; + eo::log << eo::progress << "End of Generation" << endl; } else // a one-liner {