STYLE: avoid deprecated lookup methods

This commit is contained in:
Mark Olesen
2019-05-22 15:06:12 +01:00
committed by Andrew Heather
parent 0ae939e8f8
commit b5d775a691
3 changed files with 14 additions and 16 deletions

View File

@ -779,7 +779,7 @@ int main(int argc, char *argv[])
const bool overwrite = args.found("overwrite");
const bool checkGeometry = args.found("checkGeometry");
const bool surfaceSimplify = args.found("surfaceSimplify");
const bool dryRun = args.optionFound("dry-run");
const bool dryRun = args.found("dry-run");
if (dryRun)
{
@ -788,7 +788,6 @@ int main(int argc, char *argv[])
}
#include "createNamedMesh.H"
Info<< "Read mesh in = "
<< runTime.cpuTimeIncrement() << " s" << endl;