Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/CommandLineParser.cpp

    r97ebf8 rbcd072  
    3636void CommandLineParser::Parse()
    3737{
    38   po::store(po::command_line_parser(argc,argv).options(cmdline_options).options(visible).positional(inputfile).run(), vm);
     38  po::store(po::command_line_parser(argc,argv).options(cmdline_options).run(), vm);
     39  po::store(po::command_line_parser(argc,argv).options(visible).run(), vm);
    3940  ifstream input;
    4041  input.open("example.cfg");
     
    4445  po::notify(vm);
    4546}
    46 
    47 
    4847
    4948/** States whether there are command line arguments.
Note: See TracChangeset for help on using the changeset viewer.