Removes an option from the excludes list of this subcommand
| 5907 | |
| 5908 | /// Removes an option from the excludes list of this subcommand |
| 5909 | bool remove_excludes(Option *opt) { |
| 5910 | auto iterator = std::find(std::begin(exclude_options_), std::end(exclude_options_), opt); |
| 5911 | if (iterator == std::end(exclude_options_)) { |
| 5912 | return false; |
| 5913 | } |
| 5914 | exclude_options_.erase(iterator); |
| 5915 | return true; |
| 5916 | } |
| 5917 | |
| 5918 | /// Removes a subcommand from the excludes list of this subcommand |
| 5919 | bool remove_excludes(App *app) { |
no test coverage detected