diff options
Diffstat (limited to 'base/threading/thread.cc')
-rw-r--r-- | base/threading/thread.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/threading/thread.cc b/base/threading/thread.cc index 616aac8..076580d 100644 --- a/base/threading/thread.cc +++ b/base/threading/thread.cc @@ -17,8 +17,8 @@ namespace { // because its Stop method was called. This allows us to catch cases where // MessageLoop::Quit() is called directly, which is unexpected when using a // Thread to setup and run a MessageLoop. -base::LazyInstance<base::ThreadLocalBoolean> lazy_tls_bool( - base::LINKER_INITIALIZED); +base::LazyInstance<base::ThreadLocalBoolean> lazy_tls_bool = + LAZY_INSTANCE_INITIALIZER; } // namespace |