diff options
Diffstat (limited to 'base/lock.cc')
-rw-r--r-- | base/lock.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/lock.cc b/base/lock.cc index 9f3c34d..70fa044 100644 --- a/base/lock.cc +++ b/base/lock.cc @@ -15,8 +15,8 @@ #include "base/logging.h" Lock::Lock() - : lock_() - , recursion_count_shadow_(0) { + : lock_(), + recursion_count_shadow_(0) { #ifndef NDEBUG recursion_used_ = false; acquisition_count_ = 0; |