| Index: base/lazy_instance_unittest.cc
|
| diff --git a/base/lazy_instance_unittest.cc b/base/lazy_instance_unittest.cc
|
| index d55f66489389a30f99c67ef90e15397633c8db62..cf17a84e67a36af789c4fe453b63c63ff3de46b1 100644
|
| --- a/base/lazy_instance_unittest.cc
|
| +++ b/base/lazy_instance_unittest.cc
|
| @@ -41,9 +41,7 @@
|
|
|
| class SlowDelegate : public base::DelegateSimpleThread::Delegate {
|
| public:
|
| - explicit SlowDelegate(base::LazyInstance<SlowConstructor>* lazy)
|
| - : lazy_(lazy) {}
|
| -
|
| + SlowDelegate(base::LazyInstance<SlowConstructor>* lazy) : lazy_(lazy) { }
|
| virtual void Run() {
|
| EXPECT_EQ(12, lazy_->Get().some_int());
|
| EXPECT_EQ(12, lazy_->Pointer()->some_int());
|
|
|