diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-09-07 13:32:37 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-09-07 13:32:37 +0000 |
commit | 5e728450247c677343e072f37150967b36892573 (patch) | |
tree | 30586e70775eeada778bf6efa8c08a08dbe604d0 /include | |
parent | 04ba448579b976369075c675d847ef0f779d40f4 (diff) |
Add SK_API to path == decl.
Over-the-shoulder review from robertphillips@
git-svn-id: http://skia.googlecode.com/svn/trunk@5426 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkPath.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkPath.h b/include/core/SkPath.h index 6016895e94..cf9f19a93c 100644 --- a/include/core/SkPath.h +++ b/include/core/SkPath.h @@ -42,7 +42,7 @@ public: SkPath& operator=(const SkPath&); - friend bool operator==(const SkPath&, const SkPath&); + friend SK_API bool operator==(const SkPath&, const SkPath&); friend bool operator!=(const SkPath& a, const SkPath& b) { return !(a == b); } |