Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 --- a/src/google/protobuf/stubs/strutil.cc | |
| 2 +++ b/src/google/protobuf/stubs/strutil.cc | |
| 3 @@ -981,7 +981,7 @@ static const char two_ASCII_digits[100][2] = { | |
| 4 }; | |
| 5 | |
| 6 char* FastUInt32ToBufferLeft(uint32 u, char* buffer) { | |
| 7 - int digits; | |
| 8 + uint32 digits; | |
| 9 const char *ASCII_digits = NULL; | |
| 10 // The idea of this implementation is to trim the number of divides to as few | |
| 11 // as possible by using multiplication and subtraction rather than mod (%), | |
| OLD | NEW |