Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
633ae4ed
Commit
633ae4ed
authored
Feb 10, 2015
by
Henry
Browse files
solvers: rationalize the return statement
parent
7c4e3a07
Changes
14
Hide whitespace changes
Inline
Side-by-side
applications/solvers/combustion/chemFoam/chemFoam.C
View file @
633ae4ed
...
...
@@ -83,7 +83,7 @@ int main(int argc, char *argv[])
Info
<<
"Number of steps = "
<<
runTime
.
timeIndex
()
<<
endl
;
Info
<<
"End"
<<
nl
<<
endl
;
return
(
0
)
;
return
0
;
}
...
...
applications/solvers/combustion/fireFoam/fireFoam.C
View file @
633ae4ed
...
...
@@ -123,7 +123,7 @@ int main(int argc, char *argv[])
Info
<<
"End"
<<
endl
;
return
(
0
)
;
return
0
;
}
...
...
applications/solvers/combustion/reactingFoam/LTSReactingFoam/LTSReactingFoam.C
View file @
633ae4ed
...
...
@@ -100,7 +100,7 @@ int main(int argc, char *argv[])
Info
<<
"End
\n
"
<<
endl
;
return
(
0
)
;
return
0
;
}
...
...
applications/solvers/discreteMethods/dsmc/dsmcFoam/dsmcFoam.C
View file @
633ae4ed
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011
-2015
OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
@@ -66,7 +66,7 @@ int main(int argc, char *argv[])
Info
<<
"End
\n
"
<<
endl
;
return
(
0
)
;
return
0
;
}
...
...
applications/solvers/incompressible/adjointShapeOptimizationFoam/adjointShapeOptimizationFoam.C
View file @
633ae4ed
...
...
@@ -229,7 +229,7 @@ int main(int argc, char *argv[])
Info
<<
"End
\n
"
<<
endl
;
return
(
0
)
;
return
0
;
}
...
...
applications/solvers/lagrangian/coalChemistryFoam/coalChemistryFoam.C
View file @
633ae4ed
...
...
@@ -119,7 +119,7 @@ int main(int argc, char *argv[])
Info
<<
"End
\n
"
<<
endl
;
return
(
0
)
;
return
0
;
}
...
...
applications/solvers/lagrangian/reactingParcelFilmFoam/reactingParcelFilmFoam.C
View file @
633ae4ed
...
...
@@ -117,7 +117,7 @@ int main(int argc, char *argv[])
Info
<<
"End"
<<
endl
;
return
(
0
)
;
return
0
;
}
...
...
applications/solvers/lagrangian/reactingParcelFoam/LTSReactingParcelFoam/LTSReactingParcelFoam.C
View file @
633ae4ed
...
...
@@ -106,7 +106,7 @@ int main(int argc, char *argv[])
Info
<<
"End
\n
"
<<
endl
;
return
(
0
)
;
return
0
;
}
...
...
applications/solvers/lagrangian/reactingParcelFoam/reactingParcelFoam.C
View file @
633ae4ed
...
...
@@ -109,7 +109,7 @@ int main(int argc, char *argv[])
Info
<<
"End
\n
"
<<
endl
;
return
(
0
)
;
return
0
;
}
...
...
applications/solvers/lagrangian/reactingParcelFoam/simpleReactingParcelFoam/simpleReactingParcelFoam.C
View file @
633ae4ed
...
...
@@ -88,7 +88,7 @@ int main(int argc, char *argv[])
Info
<<
"End
\n
"
<<
endl
;
return
(
0
)
;
return
0
;
}
...
...
applications/solvers/lagrangian/sprayFoam/sprayEngineFoam/sprayEngineFoam.C
View file @
633ae4ed
...
...
@@ -119,7 +119,7 @@ int main(int argc, char *argv[])
Info
<<
"End
\n
"
<<
endl
;
return
(
0
)
;
return
0
;
}
...
...
applications/solvers/lagrangian/sprayFoam/sprayFoam.C
View file @
633ae4ed
...
...
@@ -111,7 +111,7 @@ int main(int argc, char *argv[])
Info
<<
"End
\n
"
<<
endl
;
return
(
0
)
;
return
0
;
}
...
...
applications/solvers/multiphase/interFoam/interMixingFoam/interMixingFoam.C
View file @
633ae4ed
...
...
@@ -106,7 +106,7 @@ int main(int argc, char *argv[])
Info
<<
"
\n
end
\n
"
;
return
(
0
)
;
return
0
;
}
...
...
applications/utilities/preProcessing/dsmcInitialise/dsmcInitialise.C
View file @
633ae4ed
...
...
@@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-201
3
OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-201
5
OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
...
...
@@ -83,7 +83,7 @@ int main(int argc, char *argv[])
Info
<<
"End
\n
"
<<
endl
;
return
(
0
)
;
return
0
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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