From 468cb19bce9caf11b027da791b1d6f0aa1b41602 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Fri, 14 Nov 2014 03:21:42 +0100 Subject: added ^# (XOR) operator also changed precedence of + operator (higher than minus). the effects of this should be minimal --- src/expressions.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/expressions.h') diff --git a/src/expressions.h b/src/expressions.h index 8e690e8..730ddad 100644 --- a/src/expressions.h +++ b/src/expressions.h @@ -143,9 +143,10 @@ public: OP_MUL, // * OP_DIV, // / OP_MOD, // ^/ - OP_SUB, // - OP_ADD, // + + OP_SUB, // - OP_AND, // & + OP_XOR, // ^# OP_OR, // # // pseudo operators: OP_NEW, -- cgit v1.2.3