mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: tag some options as 'advanced' (only shown with -help-full)
General:
* -roots, -hostRoots, -fileHandler
Specific:
* -to <coordinateSystem> -from <coordinateSystem>
- Display -help-compat when compatibility or ignored options are available
STYLE: capitalization of options text
This commit is contained in:
@ -64,7 +64,7 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
argList::addNote
|
||||
(
|
||||
"convert between surface formats, using triSurface library components"
|
||||
"Convert between surface formats, using triSurface library components"
|
||||
);
|
||||
|
||||
argList::noParallel();
|
||||
@ -98,12 +98,11 @@ int main(int argc, char *argv[])
|
||||
|
||||
if (args.found("writePrecision"))
|
||||
{
|
||||
const label writePrecision = args.opt<label>("writePrecision");
|
||||
const label prec = args.opt<label>("writePrecision");
|
||||
Info<< "Output write precision set to " << prec << endl;
|
||||
|
||||
IOstream::defaultPrecision(writePrecision);
|
||||
Sout.precision(writePrecision);
|
||||
|
||||
Info<< "Output write precision set to " << writePrecision << endl;
|
||||
IOstream::defaultPrecision(prec);
|
||||
Sout.precision(prec);
|
||||
}
|
||||
|
||||
const fileName importName = args[1];
|
||||
|
||||
Reference in New Issue
Block a user