| 166 | } |
| 167 | |
| 168 | bool hasProhibitedChars( const std::string& line ) |
| 169 | { |
| 170 | for ( const auto& c : line ) |
| 171 | if ( isProhibitedChar( c ) ) |
| 172 | return true; |
| 173 | return false; |
| 174 | } |
| 175 | |
| 176 | std::string replaceProhibitedChars( const std::string& line, char replacement /*= '_' */ ) |
| 177 | { |
no test coverage detected