summaryrefslogtreecommitdiff
path: root/py/scope.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-08-30 14:59:21 +0100
committerDamien George <damien.p.george@gmail.com>2014-08-30 14:59:21 +0100
commit4abff7500fb05430a2ce952a2430d4d0ba16047e (patch)
treeb88ab89a41da9d9d71ad95157a4cf9bbaffb11e6 /py/scope.h
parent4d91723587b27c5a1da7e759e3f761a16b35d4bd (diff)
py: Change uint to mp_uint_t in runtime.h, stackctrl.h, binary.h.
Part of code cleanup, working towards resolving issue #50.
Diffstat (limited to 'py/scope.h')
-rw-r--r--py/scope.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/scope.h b/py/scope.h
index d66a80191..80834d936 100644
--- a/py/scope.h
+++ b/py/scope.h
@@ -69,7 +69,7 @@ typedef struct _scope_t {
id_info_t *id_info;
} scope_t;
-scope_t *scope_new(scope_kind_t kind, mp_parse_node_t pn, qstr source_file, uint emit_options);
+scope_t *scope_new(scope_kind_t kind, mp_parse_node_t pn, qstr source_file, mp_uint_t emit_options);
void scope_free(scope_t *scope);
id_info_t *scope_find_or_add_id(scope_t *scope, qstr qstr, bool *added);
id_info_t *scope_find(scope_t *scope, qstr qstr);