diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-28 23:27:35 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-28 23:27:35 +0000 |
commit | e4b6a079b3422e83a5fb082ba0e166ed1b48ecdf (patch) | |
tree | 534926f93ce82967398a08ab24ec269a5f87e659 /py/runtime0.h | |
parent | b40892d266c05613f3e32f12ca3a7c4b03270fb7 (diff) |
py: Implement 'not' in compiler, and improve rt_is_true.
Diffstat (limited to 'py/runtime0.h')
-rw-r--r-- | py/runtime0.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/runtime0.h b/py/runtime0.h index 4fdcdc3cc..b7b5afaeb 100644 --- a/py/runtime0.h +++ b/py/runtime0.h @@ -1,5 +1,5 @@ typedef enum { - RT_UNARY_OP_NOT, + RT_UNARY_OP_NOT, // TODO remove this op since it's no longer needed RT_UNARY_OP_POSITIVE, RT_UNARY_OP_NEGATIVE, RT_UNARY_OP_INVERT, |