Procházet zdrojové kódy

leveldb: Minor cleanup in ports.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=240619768
main
costan před 5 roky
odevzdal Chris Mumford
rodič
revize
da94ac67e9
1 změnil soubory, kde provedl 4 přidání a 3 odebrání
  1. +4
    -3
      port/port_stdcxx.h

+ 4
- 3
port/port_stdcxx.h Zobrazit soubor

@ -29,12 +29,13 @@
#include <snappy.h>
#endif // HAVE_SNAPPY
#include <stddef.h>
#include <stdint.h>
#include <cassert>
#include <cstddef>
#include <cstdint>
#include <condition_variable> // NOLINT
#include <mutex> // NOLINT
#include <string>
#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;

Načítá se…
Zrušit
Uložit