summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControlReference
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/InputCommon/ControlReference')
-rw-r--r--Source/Core/InputCommon/ControlReference/ExpressionParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp b/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp
index daa654e48c..ee2e78db49 100644
--- a/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp
+++ b/Source/Core/InputCommon/ControlReference/ExpressionParser.cpp
@@ -956,7 +956,7 @@ private:
static bool IsRTLBinaryOp(TokenType type) { return type == TOK_ASSIGN; }
- static bool IsBinaryOpWithPrecedence(Token tok, int precedence)
+ static bool IsBinaryOpWithPrecedence(const Token& tok, int precedence)
{
if (!tok.IsBinaryOperator())
return false;