STYLE: use Time::printExecutionTime() method

- makes format of ExecutionTime = ... output configurable (#788)
  and reduces code clutter.

STYLE: more consistent line-breaks after "End" tag
This commit is contained in:
Mark Olesen
2020-08-07 09:18:26 +02:00
parent 1178fc190b
commit b2bded48c9
21 changed files with 26 additions and 29 deletions

View File

@ -66,9 +66,9 @@ int main(int argc, char *argv[])
runTime.printExecutionTime(Info);
Info<< "End" << endl;
Info<< "End\n" << endl;
return(0);
return 0;
}

View File

@ -154,7 +154,7 @@ int main(int argc, char *argv[])
Info<< "End\n" << endl;
return(0);
return 0;
}