Skip to content
Snippets Groups Projects
Commit 18328210 authored by Houtan Bastani's avatar Houtan Bastani
Browse files

preprocessor: simplify a5590f79176315f7b214d6deeb865956683f4230

parent 6bb02e0b
Branches
Tags
No related merge requests found
...@@ -129,7 +129,7 @@ main(int argc, char **argv) ...@@ -129,7 +129,7 @@ main(int argc, char **argv)
cerr << "Incorrect syntax for params_derivs_order option" << endl; cerr << "Incorrect syntax for params_derivs_order option" << endl;
usage(); usage();
} }
params_derivs_order = atoi(string(argv[arg] + 20).c_str()); params_derivs_order = atoi(argv[arg] + 20);
} }
else if (!strcmp(argv[arg], "onlyclearglobals")) else if (!strcmp(argv[arg], "onlyclearglobals"))
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment