| 8037 | } |
| 8038 | |
| 8039 | inline std::string Formatter::make_subcommand(const App *sub) const { |
| 8040 | std::stringstream out; |
| 8041 | detail::format_help(out, sub->get_name(), sub->get_description(), column_width_); |
| 8042 | return out.str(); |
| 8043 | } |
| 8044 | |
| 8045 | inline std::string Formatter::make_expanded(const App *sub) const { |
| 8046 | std::stringstream out; |
nothing calls this directly
no test coverage detected