MCPcopy Create free account
hub / github.com/MeshInspector/MeshLib / hasProhibitedChars

Function hasProhibitedChars

source/MRMesh/MRStringConvert.cpp:168–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 2

drawDialogMethod · 0.85
saveCustomConfigModalFunction · 0.85

Calls 1

isProhibitedCharFunction · 0.85

Tested by

no test coverage detected