Skip to content
Snippets Groups Projects
Commit ddb82aa1 authored by Henry's avatar Henry
Browse files

Time: Corrected message when maximum time-precision is reached

Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=815
parent bcb8b30c
Branches
Tags
No related merge requests found
...@@ -1311,10 +1311,10 @@ Foam::Time& Foam::Time::operator++() ...@@ -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;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment