소스 검색

C++11 cleanup for util/mutexlock.h.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=213398583
main
costan 6 년 전
committed by Victor Costan
부모
커밋
c43565dd39
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      util/mutexlock.h

+ 3
- 3
util/mutexlock.h 파일 보기

@ -28,11 +28,11 @@ class SCOPED_LOCKABLE MutexLock {
}
~MutexLock() UNLOCK_FUNCTION() { this->mu_->Unlock(); }
MutexLock(const MutexLock&) = delete;
MutexLock& operator=(const MutexLock&) = delete;
private:
port::Mutex *const mu_;
// No copying allowed
MutexLock(const MutexLock&);
void operator=(const MutexLock&);
};
} // namespace leveldb

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