| 72 | |
| 73 | namespace { |
| 74 | std::string getenv_or_empty(char const* name) { |
| 75 | auto value = std::getenv(name); |
| 76 | return value == nullptr ? std::string{} : value; |
| 77 | } |
| 78 | |
| 79 | std::tuple<po::variables_map, po::options_description> parse_command_line( |
| 80 | int argc, char* argv[]) { |
no outgoing calls
no test coverage detected