Chromium Code Reviews| Index: tests/LazyPtrTest.cpp |
| diff --git a/tests/LazyPtrTest.cpp b/tests/LazyPtrTest.cpp |
| index 799f7050851a950cfcc45f65a8ed7a437f437152..8bded1e9dfb14c6dc936a2cf44f3130571e9a180 100644 |
| --- a/tests/LazyPtrTest.cpp |
| +++ b/tests/LazyPtrTest.cpp |
| @@ -49,7 +49,7 @@ namespace { |
| struct Racer : public SkRunnable { |
| Racer() : fLazy(NULL), fSeen(NULL) {} |
| - virtual void run() SK_OVERRIDE { fSeen = fLazy->get(); } |
| + void run() SK_OVERRIDE { fSeen = fLazy->get(); } |
| SkLazyPtr<int>* fLazy; |
| int* fSeen; |