From 36ee6e82627f76fdf5f4c0d0278431878ab2f495 Mon Sep 17 00:00:00 2001 From: andy <andy> Date: Thu, 15 Sep 2011 12:49:03 +0100 Subject: [PATCH] BUG: Added missing exit() on fatal error --- .../general/solutionControl/solutionControl/solutionControl.C | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/finiteVolume/cfdTools/general/solutionControl/solutionControl/solutionControl.C b/src/finiteVolume/cfdTools/general/solutionControl/solutionControl/solutionControl.C index e1ea4007d53..1e4eadce045 100644 --- a/src/finiteVolume/cfdTools/general/solutionControl/solutionControl/solutionControl.C +++ b/src/finiteVolume/cfdTools/general/solutionControl/solutionControl/solutionControl.C @@ -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); } } -- GitLab