summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
diff options
context:
space:
mode:
authorMatthew Parlane <parlane@gmail.com>2014-02-13 21:10:27 +1300
committerMatthew Parlane <parlane@gmail.com>2014-02-13 21:10:27 +1300
commit06329e24531b69a4856bbe05a8c89c57d9346de6 (patch)
treed2c3cd6256b09ebdc04b8c913b21c2e56d30c2e1 /Source/Core/InputCommon/ControllerInterface/ExpressionParser.cpp
parent88526be3b5cfc33436d4390935d7982c4795520a (diff)
parent404624bf0b0125e5a408021c616ee9b9e2dde382 (diff)
Merge pull request #65 from Tilka/nits
Small changes
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;