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