aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/Intersection/QuadraticIntersection_Test.cpp
diff options
context:
space:
mode:
authorGravatar caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-06-01 18:20:10 +0000
committerGravatar caryclark@google.com <caryclark@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-06-01 18:20:10 +0000
commitf25edfeac7c41aafc018c5de75185368838ab404 (patch)
tree29b07741dfc161e74fc7c9596f4facacbd05d3dd /experimental/Intersection/QuadraticIntersection_Test.cpp
parenta3f05facab01712a1b58e60a70b0dbdb90a39830 (diff)
shape ops work in progress
git-svn-id: http://skia.googlecode.com/svn/trunk@4119 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'experimental/Intersection/QuadraticIntersection_Test.cpp')
-rw-r--r--experimental/Intersection/QuadraticIntersection_Test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/experimental/Intersection/QuadraticIntersection_Test.cpp b/experimental/Intersection/QuadraticIntersection_Test.cpp
index 7c573d487c..adf91bde86 100644
--- a/experimental/Intersection/QuadraticIntersection_Test.cpp
+++ b/experimental/Intersection/QuadraticIntersection_Test.cpp
@@ -54,8 +54,8 @@ static const Quadratic testSet[] = {
const size_t testSetCount = sizeof(testSet) / sizeof(testSet[0]);
static void oneOffTest() {
- for (int outer = 0; outer < testSetCount - 1; ++outer) {
- for (int inner = outer + 1; inner < testSetCount; ++inner) {
+ for (size_t outer = 0; outer < testSetCount - 1; ++outer) {
+ for (size_t inner = outer + 1; inner < testSetCount; ++inner) {
const Quadratic& quad1 = testSet[outer];
const Quadratic& quad2 = testSet[inner];
Intersections intersections;