aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2014-11-12 09:38:21 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2014-11-12 09:38:21 -0800
commit88300a555f03df7d1d0d480b870388b42e032657 (patch)
tree422acf9b232c123e619eab3d28f30cb33d98b9d0 /tests
parent82365915476caedc130d0e36012a1ce0c007c4ae (diff)
Follow up.
Diffstat (limited to 'tests')
-rw-r--r--tests/BitmapHeapTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/BitmapHeapTest.cpp b/tests/BitmapHeapTest.cpp
index d65ebb67ca..f3385644bd 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); }
};