Index: tests/ImageDecodingTest.cpp |
diff --git a/tests/ImageDecodingTest.cpp b/tests/ImageDecodingTest.cpp |
index b94e29c11d6fd6b7464dc6d4f787c2bf1b21b769..3c78e0f407a34d27037a5f4daad2cbf51d2ebd05 100644 |
--- a/tests/ImageDecodingTest.cpp |
+++ b/tests/ImageDecodingTest.cpp |
@@ -696,7 +696,7 @@ public: |
SingleAllocator(void* p, size_t s) : fPixels(p), fSize(s) { } |
~SingleAllocator() {} |
// If the pixels in fPixels are big enough, use them. |
- bool allocPixelRef(SkBitmap* bm, SkColorTable* ct) SK_OVERRIDE { |
+ bool allocPixelRef(SkBitmap* bm, SkColorTable* ct) override { |
SkASSERT(bm); |
if (bm->info().getSafeSize(bm->rowBytes()) <= fSize) { |
bm->setPixels(fPixels, ct); |