Performance

- Removed "std::endl" in cases where the autoflush is only going to
  slow things down.
This commit is contained in:
Paul Beckingham
2010-10-02 12:02:06 -04:00
parent 1d3aa891d6
commit eb2cb99532
11 changed files with 78 additions and 109 deletions

View File

@@ -74,8 +74,7 @@ void handleRecurrence ()
{
std::cout << "Task ("
<< trim (t->get ("description"))
<< ") has past its 'until' date, and has been deleted."
<< std::endl;
<< ") has past its 'until' date, and has been deleted.\n";
// Determine the end date.
char endTime[16];