aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkRect.h
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-11-09 02:01:24 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-11-09 02:01:24 +0000
commitd9f7503e0cb0c4db856f53b4bdeec1332db6f296 (patch)
treebfc9f8249b88fcddd14b897d0505f62a0d651231 /include/core/SkRect.h
parent6849279f34245fb94804c488d7a74829a3d2e1ac (diff)
Sanitizing source files in Skia_Periodic_House_Keeping
git-svn-id: http://skia.googlecode.com/svn/trunk@6362 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/core/SkRect.h')
-rw-r--r--include/core/SkRect.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/core/SkRect.h b/include/core/SkRect.h
index a754719680..21ea84ff58 100644
--- a/include/core/SkRect.h
+++ b/include/core/SkRect.h
@@ -79,7 +79,7 @@ struct SK_API SkIRect {
* (right + left) / 2 when the sum is negative.
*/
int centerX() const { return (fRight + fLeft) >> 1; }
-
+
/**
* Since the center of an integer rect may fall on a factional value, this
* method is defined to return (bottom + top) >> 1
@@ -88,7 +88,7 @@ struct SK_API SkIRect {
* (bottom + top) / 2 when the sum is negative.
*/
int centerY() const { return (fBottom + fTop) >> 1; }
-
+
/**
* Return true if the rectangle's width or height are <= 0
*/