mirror of
https://github.com/fastfloat/fast_float.git
synced 2026-09-14 14:42:26 +08:00
lint unfck
This commit is contained in:
parent
63f648b904
commit
ee25fec2b7
@ -393,8 +393,9 @@ parse_digits_until_19(char const *&p, char const *pend, am_mant_t &mantissa) {
|
||||
#endif
|
||||
|
||||
template <typename UC>
|
||||
fastfloat_really_inline constexpr void parse_digits_until_19(
|
||||
UC const *&p, UC const *pend, am_mant_t &mantissa) noexcept {
|
||||
fastfloat_really_inline constexpr void
|
||||
parse_digits_until_19(UC const *&p, UC const *pend,
|
||||
am_mant_t &mantissa) noexcept {
|
||||
do {
|
||||
mantissa = mantissa * 10 + static_cast<am_mant_t>(*p - UC('0'));
|
||||
} while ((++p != pend) && (mantissa < minimal_nineteen_digit_integer));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user