mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-07 01:06:48 +08:00
Removing possibly misleading comment.
This commit is contained in:
parent
9a424bde1e
commit
cd8f09885b
@ -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'; }
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user