Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
a1e5e4ab
Commit
a1e5e4ab
authored
Jan 12, 2018
by
Andrew Heather
Browse files
COMP: move error trap to within debug scope
parent
8dadd181
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/TurbulenceModels/turbulenceModels/LES/LESdeltas/cubeRootVolDelta/cubeRootVolDelta.C
View file @
a1e5e4ab
...
...
@@ -72,9 +72,12 @@ void Foam::LESModels::cubeRootVolDelta::calcDelta()
}
else
{
FatalErrorInFunction
<<
"Case is not 3D or 2D, LES is not applicable"
<<
exit
(
FatalError
);
if
(
debug
)
{
FatalErrorInFunction
<<
"Case is not 3D or 2D, LES is not applicable"
<<
exit
(
FatalError
);
}
}
// Handle coupled boundaries
...
...
Write
Preview
Supports
Markdown
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!
Cancel
Please
register
or
sign in
to comment