C++11 cleanup for util/mutexlock.h.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=213398583
This commit is contained in:
parent
0145a94ab6
commit
c43565dd39
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user