fix macro call in poly.c
This commit is contained in:
parent
fc8a9bde85
commit
ebcf600b4b
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ mp_obj_t poly_polyfit(size_t n_args, const mp_obj_t *args) {
|
||||||
mp_raise_ValueError(translate("input data must be an iterable"));
|
mp_raise_ValueError(translate("input data must be an iterable"));
|
||||||
}
|
}
|
||||||
#if ULAB_SUPPORTS_COMPLEX
|
#if ULAB_SUPPORTS_COMPLEX
|
||||||
if(MP_OBJ_IS_TYPE(args[0], &ulab_ndarray_type)) {
|
if(mp_obj_is_type(args[0], &ulab_ndarray_type)) {
|
||||||
ndarray_obj_t *ndarray = MP_OBJ_TO_PTR(args[0]);
|
ndarray_obj_t *ndarray = MP_OBJ_TO_PTR(args[0]);
|
||||||
COMPLEX_DTYPE_NOT_IMPLEMENTED(ndarray->dtype)
|
COMPLEX_DTYPE_NOT_IMPLEMENTED(ndarray->dtype)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue