aboutsummaryrefslogtreecommitdiffhomepage
path: root/samplecode/SampleCircle.cpp
diff options
context:
space:
mode:
authorGravatar sugoi@google.com <sugoi@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-03-12 14:36:57 +0000
committerGravatar sugoi@google.com <sugoi@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-03-12 14:36:57 +0000
commit93c7ee34dc5c8f6bfad65809f4b39f8d00d7f0d4 (patch)
treed4352361bd821b020d856cc720feb3235f8d9203 /samplecode/SampleCircle.cpp
parenta041b954ffd318ebbbee9aab1c11f8c563954a1f (diff)
Removed unused parameters
I removed unused parameters wherever it was trivial to do so. Review URL: https://codereview.chromium.org/12772003 git-svn-id: http://skia.googlecode.com/svn/trunk@8103 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'samplecode/SampleCircle.cpp')
-rw-r--r--samplecode/SampleCircle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/samplecode/SampleCircle.cpp b/samplecode/SampleCircle.cpp
index aca74603d3..f65ba01abc 100644
--- a/samplecode/SampleCircle.cpp
+++ b/samplecode/SampleCircle.cpp
@@ -15,7 +15,7 @@
// fractional, and the impl computes the center and radii, and uses them to
// reconstruct the edges of the circle.
// see bug# 1504910
-static void test_circlebounds(SkCanvas* canvas) {
+static void test_circlebounds(SkCanvas*) {
#ifdef SK_SCALAR_IS_FLOAT
SkRect r = { 1.39999998f, 1, 21.3999996f, 21 };
SkPath p;