diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-11 09:47:06 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-11 09:47:06 +0000 |
commit | bc1d36924d616ca58f47142e1eb20146d9f253e7 (patch) | |
tree | a7b100da7eb049d6774c6bad427f4f1056cdd564 /py/runtime0.h | |
parent | 8d4ccc49ed8bca34579982a5a96b2b50da86d985 (diff) |
py: Fix emitcpy and emitnative's binary_op.
Diffstat (limited to 'py/runtime0.h')
-rw-r--r-- | py/runtime0.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/runtime0.h b/py/runtime0.h index 641fdaa9c..4fdcdc3cc 100644 --- a/py/runtime0.h +++ b/py/runtime0.h @@ -31,6 +31,7 @@ typedef enum { RT_BINARY_OP_INPLACE_TRUE_DIVIDE, RT_BINARY_OP_INPLACE_MODULO, RT_BINARY_OP_INPLACE_POWER, + // TODO probably should rename these COMPARE->BINARY RT_COMPARE_OP_LESS, RT_COMPARE_OP_MORE, RT_COMPARE_OP_EQUAL, |