Skip to content

Commit

Permalink
Merge 93331cb into 129d19b
Browse files Browse the repository at this point in the history
  • Loading branch information
AnomalRoil committed Jul 12, 2018
2 parents 129d19b + 93331cb commit e2eeac8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions include/rapidjson/internal/itoa.h
Expand Up @@ -211,9 +211,8 @@ inline char* u64toa(uint64_t value, char* buffer) {
*buffer++ = cDigitsLut[d3 + 1];
if (value >= kTen9)
*buffer++ = cDigitsLut[d4];
if (value >= kTen8)
*buffer++ = cDigitsLut[d4 + 1];

*buffer++ = cDigitsLut[d4 + 1];
*buffer++ = cDigitsLut[d5];
*buffer++ = cDigitsLut[d5 + 1];
*buffer++ = cDigitsLut[d6];
Expand Down

0 comments on commit e2eeac8

Please sign in to comment.