diff options
author | 2013-07-17 07:01:13 +0000 | |
---|---|---|
committer | 2013-07-17 07:01:13 +0000 | |
commit | eebe6f4a59c9ff99df3c8f0de37192e080ae7f94 (patch) | |
tree | 97a35c7da613b4fc630924f73e4c96c801807104 | |
parent | b248dd5294bdf29b3826d58bae071cd7b5062182 (diff) |
Sanitizing source files in Housekeeper-Nightly
git-svn-id: http://skia.googlecode.com/svn/trunk@10122 2bbb7eff-a529-9590-31e7-b0007b416f81
-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(); } - |