aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/GMBench.h
diff options
context:
space:
mode:
authorGravatar Brian Salomon <bsalomon@google.com>2017-03-22 12:05:03 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-03-22 16:06:18 +0000
commitd3b65972aad96453ff4510caa3e25a2b847c6d1e (patch)
treeb79341c2266afe3b529aa1f4cd80c97b9a9e71ae /bench/GMBench.h
parent30a38ff737c61799b0f36d2e6ba412f7e612f617 (diff)
Mark overridden destructors with 'override' and remove 'virtual'
This silences a new warning in clang 5.0 Change-Id: Ieb5b75a6ffed60107c3fd16075d2ecfd515b55e8 Reviewed-on: https://skia-review.googlesource.com/10006 Commit-Queue: Brian Salomon <bsalomon@google.com> Reviewed-by: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'bench/GMBench.h')
-rw-r--r--bench/GMBench.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/GMBench.h b/bench/GMBench.h
index 5e8b04ab46..c9ec80c643 100644
--- a/bench/GMBench.h
+++ b/bench/GMBench.h
@@ -18,7 +18,7 @@ class GMBench : public Benchmark {
public:
// Constructor takes ownership of the GM param.
GMBench(skiagm::GM* gm);
- virtual ~GMBench();
+ ~GMBench() override;
protected:
const char* onGetName() override;