| 41 | } |
| 42 | |
| 43 | static void write_table(std::ofstream & file, std::vector<common_arg *> & opts) { |
| 44 | write_table_header(file); |
| 45 | for (const auto & opt : opts) { |
| 46 | write_table_entry(file, *opt); |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | static void export_md(std::string fname, llama_example ex) { |
| 51 | std::ofstream file(fname, std::ofstream::out | std::ofstream::trunc); |
no test coverage detected