replace \n with endl
This commit is contained in:
parent
b18817b46f
commit
b9d74c0b55
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Reference in a new issue