Update parse_number.h

This commit is contained in:
Daniel Lemire 2024-08-22 16:16:49 -04:00 committed by GitHub
parent 9cebeb1c2c
commit 0f8009d964
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -199,7 +199,6 @@ from_chars(UC const *first, UC const *last, T &value,
template <typename T, typename UC>
FASTFLOAT_CONSTEXPR20 from_chars_result_t<UC>
from_chars_advanced(parsed_number_string_t<UC> &pns, T &value) noexcept {
printf("from_chars_advanced\n");
static_assert(is_supported_float_type<T>(),
"only some floating-point types are supported");
static_assert(is_supported_char_type<UC>(),