From da94ac67e91679842a56a876f0b19b429d72de25 Mon Sep 17 00:00:00 2001 From: costan Date: Wed, 27 Mar 2019 12:41:45 -0700 Subject: [PATCH] leveldb: Minor cleanup in ports. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=240619768 --- port/port_stdcxx.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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;