Skip to content
Snippets Groups Projects
Commit 36ee6e82 authored by andy's avatar andy
Browse files

BUG: Added missing exit() on fatal error

parent 484cd6c2
Branches
Tags
No related merge requests found
......@@ -76,7 +76,8 @@ void Foam::solutionControl::read(const bool absTolOnly)
{
FatalErrorIn("bool Foam::solutionControl::read()")
<< "Residual data for " << iter().keyword()
<< " must be specified as a dictionary";
<< " must be specified as a dictionary"
<< exit(FatalError);
}
}
......
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