Time: Corrected message when maximum time-precision is reached

Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=815
This commit is contained in:
Henry
2015-03-22 09:48:49 +00:00
parent bcb8b30cad
commit ddb82aa14c

View File

@ -1311,10 +1311,10 @@ Foam::Time& Foam::Time::operator++()
// Reached maxPrecision limit // Reached maxPrecision limit
WarningIn("Time::operator++()") WarningIn("Time::operator++()")
<< "Current time name " << dimensionedScalar::name() << "Current time name " << dimensionedScalar::name()
<< " is the old as the previous one " << oldTimeName
<< nl << nl
<< " This might result in overwriting old " << " The maximum time precision has been reached"
"results." " which might result in overwriting previous"
" results."
<< endl; << endl;
} }