summaryrefslogtreecommitdiffstatshomepage
path: root/py/obj.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-04 15:07:17 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-04 15:07:17 +0100
commit36f0ee1a5469cf4cb1d76f2613476644625cbc05 (patch)
treefd5bc8dffa6c4d29bf7e19c968b4e6a14c2913fc /py/obj.h
parentbd17e1b3ae1b256a718ed09ad1673f5eb913467d (diff)
downloadmicropython-36f0ee1a5469cf4cb1d76f2613476644625cbc05.tar.gz
micropython-36f0ee1a5469cf4cb1d76f2613476644625cbc05.zip
py: Remove mp_obj_less (use mp_binary_op(MP_BINARY_OP_LESS..) instead).
Diffstat (limited to 'py/obj.h')
-rw-r--r--py/obj.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/py/obj.h b/py/obj.h
index fe3c14d116..82b7bdadd8 100644
--- a/py/obj.h
+++ b/py/obj.h
@@ -357,7 +357,6 @@ int mp_obj_is_true(mp_obj_t arg);
bool mp_obj_is_callable(mp_obj_t o_in);
machine_int_t mp_obj_hash(mp_obj_t o_in);
bool mp_obj_equal(mp_obj_t o1, mp_obj_t o2);
-bool mp_obj_less(mp_obj_t o1, mp_obj_t o2);
machine_int_t mp_obj_get_int(mp_obj_t arg);
bool mp_obj_get_int_maybe(mp_obj_t arg, machine_int_t *value);