| 497 | } |
| 498 | |
| 499 | void CommandLineParser::splitPlusArg_(std::string_view s, |
| 500 | std::string_view prefix, |
| 501 | SymbolIdVector& container) { |
| 502 | std::istringstream f((std::string(s))); |
| 503 | std::string tmp; |
| 504 | while (std::getline(f, tmp, '+')) { |
| 505 | if (!tmp.empty() && (tmp != prefix)) { |
| 506 | SymbolId id = m_symbolTable->registerSymbol(tmp); |
| 507 | container.push_back(id); |
| 508 | } |
| 509 | } |
| 510 | } |
| 511 | |
| 512 | void CommandLineParser::splitEqArg_( |
| 513 | std::string_view s, |
nothing calls this directly
no test coverage detected