| 174 | } |
| 175 | |
| 176 | std::string replaceProhibitedChars( const std::string& line, char replacement /*= '_' */ ) |
| 177 | { |
| 178 | auto res = line; |
| 179 | for ( auto& c : res ) |
| 180 | if ( isProhibitedChar( c ) ) |
| 181 | c = replacement; |
| 182 | return res; |
| 183 | } |
| 184 | |
| 185 | std::string commonFilesName( const std::vector<std::filesystem::path> & files ) |
| 186 | { |
no test coverage detected