mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
adjust solvers and utilities to use new argList methods
- also drop various unused time options from src/OpenFOAM/include
This commit is contained in:
@ -176,8 +176,8 @@ int main(int argc, char *argv[])
|
||||
argList::validOptions.insert("verbose", "");
|
||||
argList args(argc, argv);
|
||||
|
||||
bool checkSelfIntersection = args.options().found("checkSelfIntersection");
|
||||
bool verbose = args.options().found("verbose");
|
||||
bool checkSelfIntersection = args.optionFound("checkSelfIntersection");
|
||||
bool verbose = args.optionFound("verbose");
|
||||
|
||||
fileName surfFileName(args.additionalArgs()[0]);
|
||||
Pout<< "Reading surface from " << surfFileName << " ..." << nl << endl;
|
||||
|
||||
Reference in New Issue
Block a user