aboutsummaryrefslogtreecommitdiffstats
path: root/include/core/SkRegion.h
diff options
context:
space:
mode:
authorDerek Sollenberger <djsollen@google.com>2012-03-12 15:59:01 -0400
committerDerek Sollenberger <djsollen@google.com>2012-03-12 15:59:01 -0400
commita8a1f8b5da30d0ce9091b8475d336c4ddb0f2b4e (patch)
tree1f4289d1f765d793e8c942ca5b3b87fa56a30258 /include/core/SkRegion.h
parent573b53f8618997434563ae650004f89a20aaf631 (diff)
parent2a049989f422cb1f59e9e05f413d13745f34a3d1 (diff)
downloadexternal_skia-a8a1f8b5da30d0ce9091b8475d336c4ddb0f2b4e.zip
external_skia-a8a1f8b5da30d0ce9091b8475d336c4ddb0f2b4e.tar.gz
external_skia-a8a1f8b5da30d0ce9091b8475d336c4ddb0f2b4e.tar.bz2
resolved conflicts for merge of 2a049989 to master
Change-Id: Ia1cbb6b274e1b3739704de9dd997e6d5dc5185af
Diffstat (limited to 'include/core/SkRegion.h')
-rw-r--r--include/core/SkRegion.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/core/SkRegion.h b/include/core/SkRegion.h
index 9d89d94..7623b82 100644
--- a/include/core/SkRegion.h
+++ b/include/core/SkRegion.h
@@ -45,13 +45,13 @@ public:
* Return true if the two regions are equal. i.e. The enclose exactly
* the same area.
*/
- friend bool operator==(const SkRegion& a, const SkRegion& b);
+ bool operator==(const SkRegion& other) const;
/**
* Return true if the two regions are not equal.
*/
- friend bool operator!=(const SkRegion& a, const SkRegion& b) {
- return !(a == b);
+ bool operator!=(const SkRegion& other) const {
+ return !(*this == other);
}
/**