Performance tweak.

This commit is contained in:
Jeff Young 2025-09-06 21:50:03 +01:00
parent 0e5a87546b
commit b7fee045e3

View File

@ -1368,8 +1368,7 @@ std::vector<wxString> EXPRESSION_EVALUATOR::ExtractExpressions( const wxString&
if( end != wxString::npos )
{
wxString expression = aInput.substr( start, end - start );
expressions.push_back( expression );
expressions.push_back( aInput.substr( start, end - start ) );
pos = end + 1;
}
else