summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
diff options
context:
space:
mode:
authorTillmann Karras <tilkax@gmail.com>2014-02-12 16:00:34 +0100
committerTillmann Karras <tilkax@gmail.com>2014-02-13 09:05:50 +0100
commit404624bf0b0125e5a408021c616ee9b9e2dde382 (patch)
treed2c3cd6256b09ebdc04b8c913b21c2e56d30c2e1 /Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
parent2ff794d299b0426d1f2a523523260efad84a9837 (diff)
Turn loops into range-based form
and some things suggested by cppcheck and compiler warnings.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp b/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
index 7f7954d3d8..802d1b8f0f 100644
--- a/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
@@ -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;