aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/BlurTest.cpp
diff options
context:
space:
mode:
authorGravatar tomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-10-27 15:27:51 +0000
committerGravatar tomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-10-27 15:27:51 +0000
commit83a444602ec580a0040713eed588c245b4ae0ee9 (patch)
tree118af159669bc015ee8219a47065d6649a7e06d2 /tests/BlurTest.cpp
parent71dd3e0359b1c1e09fea751cd58f1728e467e750 (diff)
Remove warnings (trailing \, signed vs unsigned, parenthesization).
Convert some tabs into spaces. git-svn-id: http://skia.googlecode.com/svn/trunk@2541 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests/BlurTest.cpp')
-rw-r--r--tests/BlurTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/BlurTest.cpp b/tests/BlurTest.cpp
index cdfa8d21cd..c0d16f8f3f 100644
--- a/tests/BlurTest.cpp
+++ b/tests/BlurTest.cpp
@@ -121,7 +121,7 @@ static void test_blur(skiatest::Reporter* reporter) {
paint.setMaskFilter(filter);
filter->unref();
- for (int test = 0; test < SK_ARRAY_COUNT(tests); ++test) {
+ for (size_t test = 0; test < SK_ARRAY_COUNT(tests); ++test) {
SkPath path;
tests[test].addPath(&path);
SkPath strokedPath;