| Index: base/third_party/dmg_fp/dtoa_wrapper.cc
|
| diff --git a/base/third_party/dmg_fp/dtoa_wrapper.cc b/base/third_party/dmg_fp/dtoa_wrapper.cc
|
| index ca49607846def7061e3f29b9cb0086b660b1f7a3..4599df465d340de45396ac157e6e7b625a5eb0af 100644
|
| --- a/base/third_party/dmg_fp/dtoa_wrapper.cc
|
| +++ b/base/third_party/dmg_fp/dtoa_wrapper.cc
|
| @@ -12,10 +12,10 @@
|
| // A single lock would lead to an attempted recursive grab.
|
| static base::LazyInstance<base::Lock,
|
| base::LeakyLazyInstanceTraits<base::Lock> >
|
| - dtoa_lock_0(base::LINKER_INITIALIZED);
|
| + dtoa_lock_0 = LAZY_INSTANCE_INITIALIZER;
|
| static base::LazyInstance<base::Lock,
|
| base::LeakyLazyInstanceTraits<base::Lock> >
|
| - dtoa_lock_1(base::LINKER_INITIALIZED);
|
| + dtoa_lock_1 = LAZY_INSTANCE_INITIALIZER;
|
|
|
| /*
|
| * This define and the code below is to trigger thread-safe behavior
|
|
|