Performance optimizations.

This commit is contained in:
Jeff Young
2025-06-05 18:01:44 +01:00
parent 5117ecdf3d
commit 9750f7690c
13 changed files with 53 additions and 51 deletions
+1 -1
View File
@@ -1342,7 +1342,7 @@ bool ReplaceIllegalFileNameChars( wxString& aName, int aReplaceChar )
}
if( changed )
aName = result;
aName = std::move( result );
return changed;
}