summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-09-04 23:35:46 +1000
committerDamien George <damien.p.george@gmail.com>2017-09-04 23:35:46 +1000
commit77a48e8cd493c0b0e0ca2d2ad58a110a23c6a232 (patch)
treee51556ae3d4d9767599d2290520a516610245359
parent98da3cf407d51e0a8c321501163de8ba00d6456b (diff)
downloadmicropython-77a48e8cd493c0b0e0ca2d2ad58a110a23c6a232.tar.gz
micropython-77a48e8cd493c0b0e0ca2d2ad58a110a23c6a232.zip
py/obj: Remove declaration for mp_obj_new_none(), it's never defined.
-rw-r--r--py/obj.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/py/obj.h b/py/obj.h
index 70cdd15fa8..77f0f22985 100644
--- a/py/obj.h
+++ b/py/obj.h
@@ -630,7 +630,6 @@ extern const struct _mp_obj_exception_t mp_const_GeneratorExit_obj;
// General API for objects
mp_obj_t mp_obj_new_type(qstr name, mp_obj_t bases_tuple, mp_obj_t locals_dict);
-mp_obj_t mp_obj_new_none(void);
static inline mp_obj_t mp_obj_new_bool(mp_int_t x) { return x ? mp_const_true : mp_const_false; }
mp_obj_t mp_obj_new_cell(mp_obj_t obj);
mp_obj_t mp_obj_new_int(mp_int_t value);