Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openfoam
Manage
Activity
Members
Labels
Plan
Issues
517
Issue boards
Milestones
Wiki
Code
Merge requests
15
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
System currently under maintenance as we upgrade the sever - you may experience some interruptions
Show more breadcrumbs
Development
openfoam
Commits
36ee6e82
Commit
36ee6e82
authored
13 years ago
by
andy
Browse files
Options
Downloads
Patches
Plain Diff
BUG: Added missing exit() on fatal error
parent
484cd6c2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/finiteVolume/cfdTools/general/solutionControl/solutionControl/solutionControl.C
+2
-1
2 additions, 1 deletion
...general/solutionControl/solutionControl/solutionControl.C
with
2 additions
and
1 deletion
src/finiteVolume/cfdTools/general/solutionControl/solutionControl/solutionControl.C
+
2
−
1
View file @
36ee6e82
...
...
@@ -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
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment