py/obj.h: If not float support is enabled, define mp_obj_is_float(o) to false.

We have so many configuration options, that finally having shortcuts like
this is helpful and cuts on number of ifdef's.
pull/1841/head
Paul Sokolovsky 2016-02-14 19:12:57 +02:00
rodzic e5cff5b223
commit dc3eb55e6a
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -710,6 +710,8 @@ mp_obj_t mp_obj_float_binary_op(mp_uint_t op, mp_float_t lhs_val, mp_obj_t rhs);
// complex
void mp_obj_complex_get(mp_obj_t self_in, mp_float_t *real, mp_float_t *imag);
mp_obj_t mp_obj_complex_binary_op(mp_uint_t op, mp_float_t lhs_real, mp_float_t lhs_imag, mp_obj_t rhs_in); // can return MP_OBJ_NULL if op not supported
#else
#define mp_obj_is_float(o) (false)
#endif
// tuple