summaryrefslogtreecommitdiffstatshomepage
path: root/py/runtime.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-06-25 13:58:41 +0000
committerDamien George <damien.p.george@gmail.com>2015-06-25 13:58:41 +0000
commited570e4b2a0a68e43b191fb0d5b45fb2ec83aca4 (patch)
tree63e95d7626abfaf062496d4734341315ae91810e /py/runtime.h
parent484adac0bb6712dca968e3db22e2a10a79b96448 (diff)
downloadmicropython-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.h1
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);