aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/CodecBench.h
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2015-10-01 09:43:39 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-10-01 09:43:39 -0700
commita1ebeb25e9acfcd801e089e063311d716b83b8a5 (patch)
tree1ac61bbbb5700af13c511b3525822d9d602968ea /bench/CodecBench.h
parentaa48d36397f8464dafd38c3f42fbdfb1419e8778 (diff)
Remove const from `const int loops`.
This drives me nuts, and prevents `while (loops --> 0)`. BUG=skia: Review URL: https://codereview.chromium.org/1379923005
Diffstat (limited to 'bench/CodecBench.h')
-rw-r--r--bench/CodecBench.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/CodecBench.h b/bench/CodecBench.h
index efa3cb2828..a574b4c67a 100644
--- a/bench/CodecBench.h
+++ b/bench/CodecBench.h
@@ -25,7 +25,7 @@ public:
protected:
const char* onGetName() override;
bool isSuitableFor(Backend backend) override;
- void onDraw(const int n, SkCanvas* canvas) override;
+ void onDraw(int n, SkCanvas* canvas) override;
void onDelayedSetup() override;
private: