Index: src/pathops/SkPathOpsQuad.cpp |
=================================================================== |
--- src/pathops/SkPathOpsQuad.cpp (revision 8808) |
+++ src/pathops/SkPathOpsQuad.cpp (working copy) |
@@ -26,7 +26,7 @@ |
int roots = SkDCubic::RootsValidT(a, b, c, d, ts); |
double d0 = pt.distanceSquared(fPts[0]); |
double d2 = pt.distanceSquared(fPts[2]); |
- double distMin = SkTMin<double>(d0, d2); |
+ double distMin = SkTMin(d0, d2); |
int bestIndex = -1; |
for (int index = 0; index < roots; ++index) { |
SkDPoint onQuad = xyAtT(ts[index]); |