| 44 | |
| 45 | |
| 46 | void create_empty_file(std::string const& path) { |
| 47 | std::ofstream ofs(path); |
| 48 | ofs << '\n'; |
| 49 | } |
| 50 | |
| 51 | const std::string separator = "--sep--"; |
| 52 | const std::string logfile_prefix = "--log-file="; |
no outgoing calls
no test coverage detected