| 79 | |
| 80 | |
| 81 | void HelpFormatter::formatOptions(ostream& ostr) const { |
| 82 | for(const Option& option : _options) { |
| 83 | formatOption(ostr,option); |
| 84 | formatText(ostr, option.description(), _indent); |
| 85 | ostr << '\n'; |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | |
| 90 | void HelpFormatter::formatOption(ostream& ostr, const Option& option) const |
nothing calls this directly
no outgoing calls
no test coverage detected