Skip to content

Commit 0b11cdc

Browse files
committed
Fix a remaining C++11 compatibility issue
1 parent 95fb488 commit 0b11cdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/dragonbox_to_chars.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ namespace jkj {
210210
}
211211
}
212212
}
213-
else if (s32 >= 1'0000) {
213+
else if (s32 >= 10000) {
214214
// 5 or 6 digits.
215215
// 429497 = ceil(2^32 / 1'0000)
216216
auto prod = s32 * UINT64_C(429497);

0 commit comments

Comments
 (0)