소스 검색

Fix sign mismatch warnings in GCC.

This was contributed in https://github.com/google/leveldb/pull/492

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=193080913
naive_version
MarcoFalke 6 년 전
committed by Victor Costan
부모
커밋
14cce848e7
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      db/memtable.cc
  2. +1
    -1
      db/version_set.cc

+ 1
- 1
db/memtable.cc 파일 보기

@ -101,7 +101,7 @@ void MemTable::Add(SequenceNumber s, ValueType type,
p += 8;
p = EncodeVarint32(p, val_size);
memcpy(p, value.data(), val_size);
assert((p + val_size) - buf == encoded_len);
assert(p + val_size == buf + encoded_len);
table_.Insert(buf);
}

+ 1
- 1
db/version_set.cc 파일 보기

@ -20,7 +20,7 @@
namespace leveldb {
static int TargetFileSize(const Options* options) {
static size_t TargetFileSize(const Options* options) {
return options->max_file_size;
}

불러오는 중...
취소
저장