| Index: tests/BitmapHeapTest.cpp
|
| diff --git a/tests/BitmapHeapTest.cpp b/tests/BitmapHeapTest.cpp
|
| index d65ebb67ca8f85648fe81ff8db730354436f3a8c..f3385644bd132a33ff24c2d1571016711304fac6 100644
|
| --- a/tests/BitmapHeapTest.cpp
|
| +++ b/tests/BitmapHeapTest.cpp
|
| @@ -17,8 +17,8 @@
|
|
|
| struct SimpleFlatController : public SkFlatController {
|
| SimpleFlatController() : SkFlatController() {}
|
| - virtual void* allocThrow(size_t bytes) { return sk_malloc_throw(bytes); }
|
| - virtual void unalloc(void* ptr) { sk_free(ptr); }
|
| + virtual void* allocThrow(size_t bytes) SK_OVERRIDE { return sk_malloc_throw(bytes); }
|
| + virtual void unalloc(void* ptr) SK_OVERRIDE { sk_free(ptr); }
|
| void setBitmapStorage(SkBitmapHeap* h) { this->setBitmapHeap(h); }
|
| };
|
|
|
|
|