Skip to content
Snippets Groups Projects
Commit da3a9023 authored by gypaos's avatar gypaos
Browse files

Fix arg string for constructor

parent 974087b6
No related branches found
No related tags found
No related merge requests found
......@@ -215,6 +215,9 @@ NPOptionManager::NPOptionManager(int argc, char** argv){
}
////////////////////////////////////////////////////////////////////////////////
NPOptionManager::NPOptionManager(std::string arg){
// add dummy string in front of arg string
arg.insert(0, "ignore ");
std::vector<char *> args;
std::stringstream iss(arg);
......
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