diff --git a/port/port_stdcxx.h b/port/port_stdcxx.h index d0609a8..7638ded 100644 --- a/port/port_stdcxx.h +++ b/port/port_stdcxx.h @@ -29,12 +29,13 @@ #include #endif // HAVE_SNAPPY -#include -#include #include +#include +#include #include // NOLINT #include // NOLINT #include + #include "port/thread_annotations.h" namespace leveldb { @@ -84,7 +85,7 @@ class CondVar { }; inline bool Snappy_Compress(const char* input, size_t length, - ::std::string* output) { + std::string* output) { #if HAVE_SNAPPY output->resize(snappy::MaxCompressedLength(length)); size_t outlen;