Merge pull request #276 from wankai/master

replace hard-coded number with named variable
This commit is contained in:
Igor Canadi 2014-09-07 22:41:21 -07:00
commit 7c16e39228

View File

@ -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;