From cd8f09885b36c57e4d65df7b52787481c8a11f2c Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Mon, 9 Nov 2020 18:34:46 -0500 Subject: [PATCH] Removing possibly misleading comment. --- include/fast_float/ascii_number.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fast_float/ascii_number.h b/include/fast_float/ascii_number.h index e1e5be6..d571fcb 100644 --- a/include/fast_float/ascii_number.h +++ b/include/fast_float/ascii_number.h @@ -10,8 +10,8 @@ namespace fast_float { -// Next function can be micro-optimized to (c & 0x30) == 0x30, but compilers are entirely -// able to optimize c >= '0' && c <= '9' very well. +// Next function can be micro-optimized, but compilers are entirely +// able to optimize it well. fastfloat_really_inline bool is_integer(char c) noexcept { return c >= '0' && c <= '9'; }