| 62 | } |
| 63 | |
| 64 | static void write_table(std::ostringstream & ss, std::vector<common_arg *> & opts) { |
| 65 | write_table_header(ss); |
| 66 | for (const auto & opt : opts) { |
| 67 | write_table_entry(ss, *opt); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | static void write_help(std::ostringstream & ss, const md_file & md) { |
| 72 | common_params params; |
no test coverage detected