diff options
author | lingbin <lingbinlb@gmail.com> | 2017-09-04 16:10:38 +0800 |
---|---|---|
committer | lingbin <lingbinlb@gmail.com> | 2017-09-04 16:10:38 +0800 |
commit | 3ee04c5ceae6535e922521ed940411a0318fdd3b (patch) | |
tree | 52a9a8856b1bd0b63d360b200bfd736baa54b13a /util/coding.cc | |
parent | 09a3c8e7417547829b94bcdaa62cdf9e896f29a9 (diff) | |
download | leveldb-3ee04c5ceae6535e922521ed940411a0318fdd3b.tar.gz leveldb-3ee04c5ceae6535e922521ed940411a0318fdd3b.zip |
fix style and remove unused code
Diffstat (limited to 'util/coding.cc')
-rw-r--r-- | util/coding.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/util/coding.cc b/util/coding.cc index 21e3186..c37b24a 100644 --- a/util/coding.cc +++ b/util/coding.cc @@ -169,16 +169,6 @@ bool GetVarint64(Slice* input, uint64_t* value) { } } -const char* GetLengthPrefixedSlice(const char* p, const char* limit, - Slice* result) { - uint32_t len; - p = GetVarint32Ptr(p, limit, &len); - if (p == NULL) return NULL; - if (p + len > limit) return NULL; - *result = Slice(p, len); - return p + len; -} - bool GetLengthPrefixedSlice(Slice* input, Slice* result) { uint32_t len; if (GetVarint32(input, &len) && |