diff options
-rw-r--r-- | tests/PathOpsTestCommon.cpp | 4 | ||||
-rw-r--r-- | tools/PictureRenderingFlags.cpp | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/tests/PathOpsTestCommon.cpp b/tests/PathOpsTestCommon.cpp index dd9b347618..f89598ad47 100644 --- a/tests/PathOpsTestCommon.cpp +++ b/tests/PathOpsTestCommon.cpp @@ -68,7 +68,7 @@ bool ValidPoint(const SkDPoint& pt) { if (SkDoubleIsNaN(pt.fX)) { return false; } - return !SkDoubleIsNaN(pt.fY); + return !SkDoubleIsNaN(pt.fY); } bool ValidPoints(const SkPoint* pts, int count) { @@ -105,5 +105,5 @@ bool ValidVector(const SkDVector& v) { if (SkDoubleIsNaN(v.fX)) { return false; } - return !SkDoubleIsNaN(v.fY); + return !SkDoubleIsNaN(v.fY); } diff --git a/tools/PictureRenderingFlags.cpp b/tools/PictureRenderingFlags.cpp index dfa28a0146..67a6a3d0aa 100644 --- a/tools/PictureRenderingFlags.cpp +++ b/tools/PictureRenderingFlags.cpp @@ -334,4 +334,3 @@ sk_tools::PictureRenderer* parseRenderer(SkString& error, PictureTool tool) { return renderer.detach(); } - |