summaryrefslogtreecommitdiffstatshomepage
path: root/py/emit.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-02-05 00:51:47 +0000
committerDamien George <damien.p.george@gmail.com>2014-02-05 00:51:47 +0000
commit35e2a4e6bb319a208af8d3e5c3e59cee7873400a (patch)
treeabe2bb266bbb011c807a335b839226a6a66f8341 /py/emit.h
parente0723497b3dbce94e6ce2a2dcd59af510f094fa4 (diff)
downloadmicropython-35e2a4e6bb319a208af8d3e5c3e59cee7873400a.tar.gz
micropython-35e2a4e6bb319a208af8d3e5c3e59cee7873400a.zip
py: Add built-in super.
Diffstat (limited to 'py/emit.h')
-rw-r--r--py/emit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/emit.h b/py/emit.h
index 062b38ef9c..ce0c98ba78 100644
--- a/py/emit.h
+++ b/py/emit.h
@@ -117,7 +117,7 @@ extern const emit_method_table_t emit_bc_method_table;
extern const emit_method_table_t emit_native_x64_method_table;
extern const emit_method_table_t emit_native_thumb_method_table;
-emit_t *emit_pass1_new(qstr qstr___class__);
+emit_t *emit_pass1_new(void);
emit_t *emit_cpython_new(uint max_num_labels);
emit_t *emit_bc_new(uint max_num_labels);
emit_t *emit_native_x64_new(uint max_num_labels);