diff options
Diffstat (limited to 'py/scope.h')
-rw-r--r-- | py/scope.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/scope.h b/py/scope.h index d66a801912..80834d9367 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); |