mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-11 16:49:28 +02:00
Turn loops into range-based form
and some things suggested by cppcheck and compiler warnings.
This commit is contained in:
@ -102,7 +102,7 @@ public:
|
||||
while (it != expr.end())
|
||||
{
|
||||
char c = *it;
|
||||
it++;
|
||||
++it;
|
||||
if (c == '`')
|
||||
return false;
|
||||
if (c > 0 && c == otherDelim)
|
||||
@ -140,7 +140,7 @@ public:
|
||||
if (!isalpha(c))
|
||||
break;
|
||||
name += c;
|
||||
it++;
|
||||
++it;
|
||||
}
|
||||
|
||||
ControlQualifier qualifier;
|
||||
|
Reference in New Issue
Block a user