Index: src/pathops/SkIntersections.cpp |
diff --git a/src/pathops/SkIntersections.cpp b/src/pathops/SkIntersections.cpp |
index 56eba2717b73079e486a829e908f19c6a345e949..62c1e411adedefcd0fde3e3fb4acdfe0651ab46d 100644 |
--- a/src/pathops/SkIntersections.cpp |
+++ b/src/pathops/SkIntersections.cpp |
@@ -13,14 +13,14 @@ void SkIntersections::append(const SkIntersections& i) { |
} |
} |
-int (SkIntersections::*CurveVertical[])(const SkPoint[], SkScalar, SkScalar, SkScalar, bool) = { |
+int (SkIntersections::* const CurveVertical[])(const SkPoint[], SkScalar, SkScalar, SkScalar, bool) = { |
NULL, |
&SkIntersections::verticalLine, |
&SkIntersections::verticalQuad, |
&SkIntersections::verticalCubic |
}; |
-int (SkIntersections::*CurveRay[])(const SkPoint[], const SkDLine&) = { |
+int ( SkIntersections::* const CurveRay[])(const SkPoint[], const SkDLine&) = { |
NULL, |
&SkIntersections::lineRay, |
&SkIntersections::quadRay, |