| 306 | } |
| 307 | |
| 308 | static std::string printStringArray( |
| 309 | const std::initializer_list<std::string_view>& all_strings) { |
| 310 | std::string report; |
| 311 | for (std::string_view s : all_strings) { |
| 312 | report.append(s).append("\n"); |
| 313 | } |
| 314 | report += "\n"; |
| 315 | return report; |
| 316 | } |
| 317 | |
| 318 | void CommandLineParser::withPython() { |
| 319 | #ifdef SURELOG_WITH_PYTHON |
no test coverage detected