| 2024 | p, parse_error::missing_integer_or_dot_after_sign); |
| 2025 | } |
| 2026 | FASTFLOAT_IF_CONSTEXPR17(basic_json_fmt) { |
| 2027 | if (!is_integer(*p)) { // a sign must be followed by an integer |
| 2028 | return report_parse_error<UC>(p, |
| 2029 | parse_error::missing_integer_after_sign); |
| 2030 | } |
| 2031 | } |
| 2032 | else { |
| 2033 | if (!is_integer(*p) && |
| 2034 | (*p != |
no test coverage detected