Merge pull request #276 from wankai/master

replace hard-coded number with named variable
main
Igor Canadi 10 years ago
commit 7c16e39228
  1. 2
      table/plain_table_key_coding.cc

@ -30,7 +30,7 @@ const unsigned char kSizeInlineLimit = 0x3F;
size_t EncodeSize(EntryType type, uint32_t key_size, char* out_buffer) {
out_buffer[0] = type << 6;
if (key_size < 0x3F) {
if (key_size < static_cast<uint32_t>(kSizeInlineLimit)) {
// size inlined
out_buffer[0] |= static_cast<char>(key_size);
return 1;

Loading…
Cancel
Save