# HG changeset patch # User Matti Hamalainen # Date 1366639201 -10800 # Node ID aba7dde79a04f634cd939ac09ba63954c188a25c # Parent 9efcdbe5a299efbbc42de6793003d1abf0888085 Add associativity types enum. diff -r 9efcdbe5a299 -r aba7dde79a04 dmeval.h --- a/dmeval.h Mon Apr 22 09:40:44 2013 +0300 +++ b/dmeval.h Mon Apr 22 17:00:01 2013 +0300 @@ -42,6 +42,14 @@ // Total number of operators OP_NOPERS +} DMOper; + + +enum +{ + OT_LEFT, // Left-associative + OT_RIGHT, // Right-associative + OT_UNARY, } DMOperType;