summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControlReference/ExpressionParser.h
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2019-10-20 09:51:19 -0500
committerJordan Woyak <jordan.woyak@gmail.com>2019-10-20 09:51:52 -0500
commit1fe44238b1d64f18d9366710f16ae062290d5b0c (patch)
tree24108c031ad1e2a1b8a976c733d65bf159e95e46 /Source/Core/InputCommon/ControlReference/ExpressionParser.h
parent6282b0d83e775a87116e728a9da140f34594f17e (diff)
ExpressionParser: Add XOR operator.
Diffstat (limited to 'Source/Core/InputCommon/ControlReference/ExpressionParser.h')
-rw-r--r--Source/Core/InputCommon/ControlReference/ExpressionParser.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControlReference/ExpressionParser.h b/Source/Core/InputCommon/ControlReference/ExpressionParser.h
index cab6096c0e..c0d807bf17 100644
--- a/Source/Core/InputCommon/ControlReference/ExpressionParser.h
+++ b/Source/Core/InputCommon/ControlReference/ExpressionParser.h
@@ -39,6 +39,7 @@ enum TokenType
TOK_LTHAN,
TOK_GTHAN,
TOK_COMMA,
+ TOK_XOR,
TOK_BINARY_OPS_END,
};