Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/UIElements/CommandLineUI/CommandLineParser.cpp

    r33e801 r2f429e  
    390390//            currentOption->hasDefaultValue() ?
    391391//                  po::value < const element * >()->default_value(boost::lexical_cast<const element *>(currentOption->getDefaultValue().c_str())) :
    392                   po::value < int >(),
     392                  po::value < std::string >(),
    393393                  currentOption->getDescription().c_str())
    394394        ;
     
    399399//            currentOption->hasDefaultValue() ?
    400400//                  po::value < std::vector<const element *> >()->default_value(boost::lexical_cast< std::vector<const element *> >(currentOption->getDefaultValue().c_str())) :
    401                   po::value < std::vector<int> >()->multitoken(),
     401                  po::value < std::vector<std::string> >()->multitoken(),
    402402                  currentOption->getDescription().c_str())
    403403        ;
Note: See TracChangeset for help on using the changeset viewer.