aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/ImageCacheTest.cpp
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2014-12-12 15:11:17 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2014-12-12 15:11:18 -0800
commit9880607151ca7c2dc6b1a4b9756938bd71913ab5 (patch)
tree2f1cd6ca7cb985a7d9e21e9dd250bf8115f278e8 /tests/ImageCacheTest.cpp
parentb927c3cbff0688954fa66a39a6dd5ef85f0b5d48 (diff)
Even more win64 warning fixes
Diffstat (limited to 'tests/ImageCacheTest.cpp')
-rw-r--r--tests/ImageCacheTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ImageCacheTest.cpp b/tests/ImageCacheTest.cpp
index eaf3f2811f..c34f9d97e9 100644
--- a/tests/ImageCacheTest.cpp
+++ b/tests/ImageCacheTest.cpp
@@ -56,7 +56,7 @@ static void test_cache(skiatest::Reporter* reporter, SkResourceCache& cache, boo
if (testPurge) {
// stress test, should trigger purges
- for (size_t i = 0; i < COUNT * 100; ++i) {
+ for (int i = 0; i < COUNT * 100; ++i) {
TestingKey key(i);
cache.add(SkNEW_ARGS(TestingRec, (key, i)));
}