replace \n with endl

This commit is contained in:
Johann Dreo 2010-09-05 23:56:17 +02:00
commit b9d74c0b55

View file

@ -40,9 +40,9 @@ eoMonitor& eoStdoutMonitor::operator()(void)
{ {
for(iterator it = vec.begin(); it != vec.end(); ++it) 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 else // a one-liner
{ {