v4 preprocessor: removed unnecessary round() before call to sec2hms()

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@1989 ac1d8469-bf42-47a9-8791-bf33cf982152
issue#70
sebastien 2008-08-24 10:41:46 +00:00
parent 08c0962c83
commit ead500e4b0
1 changed files with 1 additions and 1 deletions

View File

@ -194,6 +194,6 @@ ModFile::writeOutputFiles(const string &basename, bool clear_all) const
mOutputFile << "save('" << basename << "_results.mat', 'oo_');" << endl;
mOutputFile << "diary off" << endl;
mOutputFile << endl << "disp(['Total computing time : ' sec2hms(round(toc)) ]);" << endl;
mOutputFile << endl << "disp(['Total computing time : ' sec2hms(toc) ]);" << endl;
mOutputFile.close();
}