summaryrefslogtreecommitdiff
path: root/py/runtime0.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-28 23:27:35 +0000
committerDamien George <damien.p.george@gmail.com>2014-01-28 23:27:35 +0000
commite4b6a079b3422e83a5fb082ba0e166ed1b48ecdf (patch)
tree534926f93ce82967398a08ab24ec269a5f87e659 /py/runtime0.h
parentb40892d266c05613f3e32f12ca3a7c4b03270fb7 (diff)
py: Implement 'not' in compiler, and improve rt_is_true.
Diffstat (limited to 'py/runtime0.h')
-rw-r--r--py/runtime0.h2
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,