- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/UIElements/CommandLineUI/CommandLineParser.cpp
r33e801 r2f429e 390 390 // currentOption->hasDefaultValue() ? 391 391 // po::value < const element * >()->default_value(boost::lexical_cast<const element *>(currentOption->getDefaultValue().c_str())) : 392 po::value < int>(),392 po::value < std::string >(), 393 393 currentOption->getDescription().c_str()) 394 394 ; … … 399 399 // currentOption->hasDefaultValue() ? 400 400 // 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(), 402 402 currentOption->getDescription().c_str()) 403 403 ;
Note:
See TracChangeset
for help on using the changeset viewer.