leveldb: Minor cleanup in ports.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=240619768
This commit is contained in:
parent
bd24b96306
commit
da94ac67e9
@ -29,12 +29,13 @@
|
|||||||
#include <snappy.h>
|
#include <snappy.h>
|
||||||
#endif // HAVE_SNAPPY
|
#endif // HAVE_SNAPPY
|
||||||
|
|
||||||
#include <stddef.h>
|
|
||||||
#include <stdint.h>
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
#include <cstddef>
|
||||||
|
#include <cstdint>
|
||||||
#include <condition_variable> // NOLINT
|
#include <condition_variable> // NOLINT
|
||||||
#include <mutex> // NOLINT
|
#include <mutex> // NOLINT
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include "port/thread_annotations.h"
|
#include "port/thread_annotations.h"
|
||||||
|
|
||||||
namespace leveldb {
|
namespace leveldb {
|
||||||
@ -84,7 +85,7 @@ class CondVar {
|
|||||||
};
|
};
|
||||||
|
|
||||||
inline bool Snappy_Compress(const char* input, size_t length,
|
inline bool Snappy_Compress(const char* input, size_t length,
|
||||||
::std::string* output) {
|
std::string* output) {
|
||||||
#if HAVE_SNAPPY
|
#if HAVE_SNAPPY
|
||||||
output->resize(snappy::MaxCompressedLength(length));
|
output->resize(snappy::MaxCompressedLength(length));
|
||||||
size_t outlen;
|
size_t outlen;
|
||||||
|
Loading…
Reference in New Issue
Block a user