From ead500e4b047f26aac57d0f29a595ae6be7def18 Mon Sep 17 00:00:00 2001 From: sebastien <sebastien@ac1d8469-bf42-47a9-8791-bf33cf982152> Date: Sun, 24 Aug 2008 10:41:46 +0000 Subject: [PATCH] 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 --- ModFile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ModFile.cc b/ModFile.cc index cb1b1cab..b09b789a 100644 --- a/ModFile.cc +++ b/ModFile.cc @@ -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(); } -- GitLab