mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Mark single argument constructors in mutex.h as explicit.
This commit is contained in:
parent
30dbc81fb5
commit
8b1d406d01
1 changed files with 2 additions and 2 deletions
|
@ -166,7 +166,7 @@ class Mutex {
|
|||
// It inhibits work being done by the destructor, which makes it
|
||||
// safer for code that tries to acqiure this mutex in their global
|
||||
// destructor.
|
||||
inline Mutex(LinkerInitialized);
|
||||
explicit inline Mutex(LinkerInitialized);
|
||||
|
||||
// Destructor
|
||||
inline ~Mutex();
|
||||
|
@ -197,7 +197,7 @@ class Mutex {
|
|||
inline void SetIsSafe() { is_safe_ = true; }
|
||||
|
||||
// Catch the error of writing Mutex when intending MutexLock.
|
||||
Mutex(Mutex* /*ignored*/) {}
|
||||
explicit Mutex(Mutex* /*ignored*/) {}
|
||||
// Disallow "evil" constructors
|
||||
Mutex(const Mutex&);
|
||||
void operator=(const Mutex&);
|
||||
|
|
Loading…
Add table
Reference in a new issue