소스 검색

leveldb: Minor cleanup in ports.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=240619768
main
costan 5 년 전
committed by Chris Mumford
부모
커밋
da94ac67e9
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +4
    -3
      port/port_stdcxx.h

+ 4
- 3
port/port_stdcxx.h 파일 보기

@ -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;

불러오는 중...
취소
저장