Browse Source

Remove unnecessary bit operation.

main
Cheng Chang 5 years ago
parent
commit
cf1b5f4732
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      util/coding.cc

+ 1
- 1
util/coding.cc View File

@ -82,7 +82,7 @@ char* EncodeVarint64(char* dst, uint64_t v) {
static const int B = 128;
unsigned char* ptr = reinterpret_cast<unsigned char*>(dst);
while (v >= B) {
*(ptr++) = (v & (B-1)) | B;
*(ptr++) = v | B;
v >>= 7;
}
*(ptr++) = static_cast<unsigned char>(v);

Loading…
Cancel
Save