diff options
author | caryclark <caryclark@google.com> | 2016-10-06 07:06:00 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-06 07:06:00 -0700 |
commit | f114a9bb4ea1169ce9ad59938403aabca105fdee (patch) | |
tree | 04c4718861041746ec47845f51d11a00caa77a23 | |
parent | 6069ddabd8385ff838236dc25d7354e71649c9f3 (diff) |
fix mac all build
R=reed@google.com
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2394943002
Review-Url: https://codereview.chromium.org/2394943002
-rw-r--r-- | tests/skia_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/skia_test.cpp b/tests/skia_test.cpp index a1c3c23781..2b11e3ab50 100644 --- a/tests/skia_test.cpp +++ b/tests/skia_test.cpp @@ -96,7 +96,7 @@ public: SkDebugf("\nFAILED: %s", failure.toString().c_str()); fError = true; } - void* stats() { return fStats; } + void* stats() const override { return fStats; } void* fStats; bool fError; int fTestCount; |