Removed need for trimIdx and fDigitsFound, resulting in less code. (#576)

Having an extra integer variable to hold onto an i or i-1 value is inefficient, for "if (m_token.at(i) != chZero)", the code under "fDigitsFound" will always run, so it makes sense to put the fDigitsFound code under the if statement, which can return from the function entirely instead of breaking.

### How changes were validated:
- Manual Testing verified the code having identical behavior as before, with no side effects.
This commit is contained in:
pi1024e 2019-07-16 15:53:34 -04:00 committed by Howard Wolosky
parent a35a030683
commit 5b59bdcb60

View File

@ -137,6 +137,7 @@ void COpndCommand::AppendCommand(int command)
{
m_commands->Append(command);
}
if (command == IDC_PNT)
{
m_fDecimal = true;
@ -256,38 +257,30 @@ const wstring& COpndCommand::GetToken(wchar_t decimalSymbol)
}
// Remove zeros
bool fDigitsFound = false;
int trimIdx = 0;
for (unsigned int i = 0; i < m_token.size(); i++)
{
if (m_token.at(i) != chZero)
{
if (m_token.at(i) == decimalSymbol)
{
trimIdx = i - 1;
m_token.erase(0, i - 1);
}
else
{
trimIdx = i;
m_token.erase(0, i);
}
fDigitsFound = true;
break;
if (m_fNegative)
{
m_token.insert(0, &chNegate);
}
return m_token;
}
}
if (fDigitsFound)
{
m_token.erase(0, trimIdx);
if (m_fNegative)
{
m_token.insert(0, &chNegate);
}
}
else
{
m_token.clear();
m_token.append(&chZero);
}
m_token.clear();
m_token.append(&chZero);
return m_token;
}