replace hard-coded number with named variable

This commit is contained in:
wankai 2014-09-08 11:10:17 +08:00
parent db8ca520b2
commit 823773837b
1 changed files with 1 additions and 1 deletions

View File

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