From 12ece3c84ffecb533dee05f5048ca07e89fcbfd5 Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Sun, 28 Jan 2024 15:20:41 -0500 Subject: [PATCH] removing leftover print --- include/fast_float/parse_number.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/fast_float/parse_number.h b/include/fast_float/parse_number.h index 0c02a429..a97906eb 100644 --- a/include/fast_float/parse_number.h +++ b/include/fast_float/parse_number.h @@ -184,7 +184,6 @@ template FASTFLOAT_CONSTEXPR20 from_chars_result_t from_chars(UC const * first, UC const * last, T &value, chars_format fmt /*= chars_format::general*/) noexcept { -printf("from_chars to call\n"); return from_chars_caller::call(first, last, value, parse_options_t(fmt)); }