STYLE: use the more succinct forms for argList (issue #307)

* args[int]   vs  args.args()[int]
  * args[word]  vs  args.options()[word]
  etc.
This commit is contained in:
Mark Olesen
2016-11-20 13:06:57 +01:00
parent 7b9fde84ce
commit 95e7faf309
11 changed files with 22 additions and 21 deletions

View File

@ -66,7 +66,7 @@ int main(int argc, char *argv[])
const pointConstraints& pc = pointConstraints::New(pointMesh::New(mesh));
const Switch inflate(args.args()[1]);
const Switch inflate(args[1]);
if (inflate)
{