diff options
Diffstat (limited to 'py/scope.h')
-rw-r--r-- | py/scope.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/scope.h b/py/scope.h index cb5e606c3..f9ad748d9 100644 --- a/py/scope.h +++ b/py/scope.h @@ -46,10 +46,10 @@ typedef struct _scope_t { */ int num_locals; int stack_size; - int unique_code_id; + uint unique_code_id; } scope_t; -scope_t *scope_new(scope_kind_t kind, py_parse_node_t pn); +scope_t *scope_new(scope_kind_t kind, py_parse_node_t pn, uint unique_code_id); 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); id_info_t *scope_find_global(scope_t *scope, qstr qstr); |