From e8e1a01733c678e5000c4b8fe44c97d0ad1452fd Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Thu, 29 Oct 2020 16:47:33 -0400 Subject: [PATCH] cout --- include/fast_float/simple_decimal_conversion.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/fast_float/simple_decimal_conversion.h b/include/fast_float/simple_decimal_conversion.h index 841fcc4..8ca0cb6 100644 --- a/include/fast_float/simple_decimal_conversion.h +++ b/include/fast_float/simple_decimal_conversion.h @@ -354,7 +354,6 @@ adjusted_mantissa compute_float(decimal &d) { template adjusted_mantissa parse_long_mantissa(const char *first, const char* last) { decimal d = parse_decimal(first, last); - std::cout << " decimall " << d << std::endl; // In some cases we can get lucky and looking at only the first 19 digits is enough. // Let us try that. const uint64_t mantissa = d.to_truncated_mantissa();