Skip to content
Snippets Groups Projects
Commit dc372225 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

fixed arg parsing snafus.

parent 07f875c3
No related branches found
No related tags found
No related merge requests found
......@@ -249,9 +249,9 @@ std::string getStepName(void) const override
int parseArgs(const vector<string> step_args)
{
auto argv = vector<char*>();
auto argv = vector<char*>({const_cast<char*>("libp1transform.so")});
transform(ALLOF(step_args), back_inserter(argv), [](const string &s) -> char* { return const_cast<char*>(s.c_str()); } );
const auto argc=step_args.size();
const auto argc=argv.size();
//Set the verbose flag
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment