Puts a result at the end
| 4211 | |
| 4212 | /// Puts a result at the end |
| 4213 | Option *add_result(std::string s) { |
| 4214 | _add_result(std::move(s), results_); |
| 4215 | current_option_state_ = option_state::parsing; |
| 4216 | return this; |
| 4217 | } |
| 4218 | |
| 4219 | /// Puts a result at the end and get a count of the number of arguments actually added |
| 4220 | Option *add_result(std::string s, int &results_added) { |
no outgoing calls
no test coverage detected