| 413 | } |
| 414 | |
| 415 | std::string toGenericString(fs::path const &p) |
| 416 | { |
| 417 | if constexpr (std::is_same_v<typename fs::path::value_type, wchar_t>) { |
| 418 | return CLI::narrow(p.generic_wstring()); |
| 419 | } else { |
| 420 | return p.generic_string(); |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | fs::path appendSuffixToPath(fs::path const &outputFilePrefixFullPath, const std::string &suffix) |
| 425 | { |
no outgoing calls
no test coverage detected