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 23a863ac52..52cbbf118f 100644 --- a/py/scope.h +++ b/py/scope.h @@ -71,8 +71,8 @@ typedef struct _scope_t { struct _scope_t *parent; struct _scope_t *next; mp_parse_node_t pn; - qstr source_file; - qstr simple_name; + uint16_t source_file; // a qstr + uint16_t simple_name; // a qstr mp_raw_code_t *raw_code; uint8_t scope_flags; // see runtime0.h uint8_t emit_options; // see compile.h |