Skip to content
GitLab
Explore
Sign in
Register
This is an archived project. Repository and other project resources are read-only.
Commits on Source (1)
STYLE: avoid implicit construction
· 31bbd299
Mark OLESEN
authored
Nov 03, 2018
31bbd299
Hide whitespace changes
Inline
Side-by-side
applications/solvers/implicitSolver/faSavageHutterFoam.C
View file @
31bbd299
...
...
@@ -69,8 +69,7 @@ int main(int argc, char *argv[])
<<
" TOL h "
<<
hResidualMax
<<
nl
<<
" TOL Us "
<<
UsResidualMax
<<
nl
<<
endl
;
Switch
initDeltaT
=
runTime
.
controlDict
().
lookup
(
"initDeltaT"
);
Switch
initDeltaT
(
runTime
.
controlDict
().
lookup
(
"initDeltaT"
));
if
(
initDeltaT
)
{
...
...