diff options
Diffstat (limited to 'src/expressions.h')
-rw-r--r-- | src/expressions.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/expressions.h b/src/expressions.h index a0e2908..f97ec1c 100644 --- a/src/expressions.h +++ b/src/expressions.h @@ -159,11 +159,11 @@ public: enum Operator { OP_NIL = 0, OP_POW, // ^* - OP_MUL, // * - OP_DIV, // / OP_MOD, // ^/ - OP_ADD, // + + OP_DIV, // / + OP_MUL, // * OP_SUB, // - + OP_ADD, // + OP_AND, // & OP_XOR, // ^# OP_OR, // # |