diff options
author | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-11-14 02:01:22 +0000 |
---|---|---|
committer | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-11-14 02:01:22 +0000 |
commit | cec8de68217186d0f5676a696de44343aaa61de7 (patch) | |
tree | 28d595349dc1d57d8296da29a3823a4ea34354b2 | |
parent | 9bee33afbeca29f531c8455513b925f6e93da633 (diff) |
Sanitizing source files in Skia_Periodic_House_Keeping
git-svn-id: http://skia.googlecode.com/svn/trunk@6413 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | src/core/SkPath.cpp | 2 | ||||
-rw-r--r-- | tests/PathTest.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/SkPath.cpp b/src/core/SkPath.cpp index b7c2162dbf..3b1b518636 100644 --- a/src/core/SkPath.cpp +++ b/src/core/SkPath.cpp @@ -342,7 +342,7 @@ bool SkPath::conservativelyContainsRect(const SkRect& rect) const { if (kConvex_Convexity != this->getConvexity()) { return false; } - + Direction direction; if (!this->cheapComputeDirection(&direction)) { return false; diff --git a/tests/PathTest.cpp b/tests/PathTest.cpp index a48fc9f6dd..a74ba8a8e6 100644 --- a/tests/PathTest.cpp +++ b/tests/PathTest.cpp @@ -835,7 +835,7 @@ static void test_conservativelyContains(skiatest::Reporter* reporter) { // round-rect radii static const SkScalar kRRRadii[] = {SkIntToScalar(5), SkIntToScalar(3)}; - + static const struct { SkRect fQueryRect; bool fInRect; |