Hello,
I would like to find a way to allow_unregistered program_options, as well as specify cls::unix_style ^ cls::allow_short, where cls is po::command_line_style.
The code I've got here doesn't seem to like unrecognized ones:
//vis_ are my visible options, vars_ is my variable map.
po::store(parse_command_line(argc, argv, vis_,
cls::unix_style ^ cls::allow_short), vars_);
po::notify(vars_);
Possible? Thank ye...