Index: src/pathops/SkPathOpsPoint.h |
diff --git a/src/pathops/SkPathOpsPoint.h b/src/pathops/SkPathOpsPoint.h |
index 336fb62de083d3d8e3816b1ea0283ce5ac9fbb8c..5c2e3a50ddd27258f0c38dd0248b54451ce8b6a2 100644 |
--- a/src/pathops/SkPathOpsPoint.h |
+++ b/src/pathops/SkPathOpsPoint.h |
@@ -148,14 +148,12 @@ struct SkDPoint { |
return AlmostBequalUlps((double) largest, largest + dist); // is dist within ULPS tolerance? |
} |
-#ifdef SK_DEBUG |
static bool RoughlyEqual(const SkPoint& a, const SkPoint& b) { |
if (approximately_equal(a.fX, b.fX) && approximately_equal(a.fY, b.fY)) { |
return true; |
} |
return RoughlyEqualUlps(a.fX, b.fX) && RoughlyEqualUlps(a.fY, b.fY); |
} |
-#endif |
bool approximatelyPEqual(const SkDPoint& a) const { |
if (approximately_equal(fX, a.fX) && approximately_equal(fY, a.fY)) { |