aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkRect.h
diff options
context:
space:
mode:
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
*/