| 2616 | #define READING_DONE 4 |
| 2617 | |
| 2618 | double String::to_float(const char *p_str) { |
| 2619 | return built_in_strtod<char>(p_str); |
| 2620 | } |
| 2621 | |
| 2622 | double String::to_float(const char32_t *p_str, const char32_t **r_end) { |
| 2623 | return built_in_strtod<char32_t>(p_str, (char32_t **)r_end); |
no test coverage detected