소스 검색

Fix build errors.

PiperOrigin-RevId: 351442409
main
Victor Costan 3 년 전
부모
커밋
1998c0ef15
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      benchmarks/db_bench.cc

+ 2
- 2
benchmarks/db_bench.cc 파일 보기

@ -130,7 +130,7 @@ class CountComparator : public Comparator {
public:
CountComparator(const Comparator* wrapped) : wrapped_(wrapped) {}
~CountComparator() override {}
int Compare(const Slice& a, const Slice& b) const {
int Compare(const Slice& a, const Slice& b) const override {
count_.fetch_add(1, std::memory_order_relaxed);
return wrapped_->Compare(a, b);
}
@ -149,7 +149,7 @@ class CountComparator : public Comparator {
void reset() { count_.store(0, std::memory_order_relaxed); }
private:
mutable std::atomic<size_t> count_ = 0;
mutable std::atomic<size_t> count_{0};
const Comparator* const wrapped_;
};

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