diff options
Diffstat (limited to 'py/parsenum.h')
-rw-r--r-- | py/parsenum.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/parsenum.h b/py/parsenum.h index a807cb09d..d532cb194 100644 --- a/py/parsenum.h +++ b/py/parsenum.h @@ -35,7 +35,7 @@ mp_obj_t mp_parse_num_integer(const char *restrict str, size_t len, int base, mp_lexer_t *lex); #if MICROPY_PY_BUILTINS_FLOAT -mp_float_t mp_decimal_exp(mp_float_t num, int dec_exp); +mp_large_float_t mp_decimal_exp(mp_large_float_t num, int dec_exp); const char *mp_parse_float_internal(const char *str, size_t len, mp_float_t *res); #endif |