| 7868 | } |
| 7869 | |
| 7870 | inline std::string Formatter::make_positionals(const App *app) const { |
| 7871 | std::vector<const Option *> opts = |
| 7872 | app->get_options([](const Option *opt) { return !opt->get_group().empty() && opt->get_positional(); }); |
| 7873 | |
| 7874 | if (opts.empty()) return std::string(); |
| 7875 | |
| 7876 | return make_group(get_label("Positionals"), true, opts); |
| 7877 | } |
| 7878 | |
| 7879 | inline std::string Formatter::make_groups(const App *app, AppFormatMode mode) const { |
| 7880 | std::stringstream out; |
nothing calls this directly
no test coverage detected