Explicitly disallow default c-tor

Change-Id: Ia52995a459443159e80383d5b396c3edd90a08ae
This commit is contained in:
Dimitry Ivanov 2015-12-01 16:57:19 -08:00
parent 9cbabd8fe5
commit a5e183c066
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class ScopedPthreadMutexLocker {
private:
pthread_mutex_t* mu_;
DISALLOW_COPY_AND_ASSIGN(ScopedPthreadMutexLocker);
DISALLOW_IMPLICIT_CONSTRUCTORS(ScopedPthreadMutexLocker);
};
#endif // SCOPED_PTHREAD_MUTEX_LOCKER_H