| 361 | } |
| 362 | template<> |
| 363 | std::string CommandLineParser::analyzeValue<std::string>(const std::string& str, bool space_delete) |
| 364 | { |
| 365 | if (space_delete) |
| 366 | { |
| 367 | return del_space(str); |
| 368 | } |
| 369 | return str; |
| 370 | } |
| 371 | |
| 372 | template<> |
| 373 | int CommandLineParser::analyzeValue<int>(const std::string& str, bool /*space_delete*/) |
nothing calls this directly
no test coverage detected