diff options
author | Damien George <damien.p.george@gmail.com> | 2015-06-25 13:58:41 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-06-25 13:58:41 +0000 |
commit | ed570e4b2a0a68e43b191fb0d5b45fb2ec83aca4 (patch) | |
tree | 63e95d7626abfaf062496d4734341315ae91810e /py/runtime.h | |
parent | 484adac0bb6712dca968e3db22e2a10a79b96448 (diff) | |
download | micropython-ed570e4b2a0a68e43b191fb0d5b45fb2ec83aca4.tar.gz micropython-ed570e4b2a0a68e43b191fb0d5b45fb2ec83aca4.zip |
py: Remove mp_load_const_str and replace uses with inlined version.
Diffstat (limited to 'py/runtime.h')
-rw-r--r-- | py/runtime.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/py/runtime.h b/py/runtime.h index d171f1582c..419b1d059b 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -90,7 +90,6 @@ mp_obj_t mp_binary_op(mp_uint_t op, mp_obj_t lhs, mp_obj_t rhs); mp_obj_t mp_load_const_int(qstr qst); mp_obj_t mp_load_const_dec(qstr qst); -mp_obj_t mp_load_const_str(qstr qst); mp_obj_t mp_load_const_bytes(qstr qst); mp_obj_t mp_call_function_0(mp_obj_t fun); |