removing leftover print

This commit is contained in:
Daniel Lemire 2024-01-28 15:20:41 -05:00
parent a0ea962bf5
commit 12ece3c84f

View File

@ -184,7 +184,6 @@ template<typename T, typename UC, typename>
FASTFLOAT_CONSTEXPR20 FASTFLOAT_CONSTEXPR20
from_chars_result_t<UC> from_chars(UC const * first, UC const * last, from_chars_result_t<UC> from_chars(UC const * first, UC const * last,
T &value, chars_format fmt /*= chars_format::general*/) noexcept { T &value, chars_format fmt /*= chars_format::general*/) noexcept {
printf("from_chars to call\n");
return from_chars_caller<T>::call(first, last, value, parse_options_t<UC>(fmt)); return from_chars_caller<T>::call(first, last, value, parse_options_t<UC>(fmt));
} }