From: wjmaclean@chromium.org Date: Thu, 6 Sep 2012 18:42:03 +0000 (+0000) Subject: Export SkPath equality operator. X-Git-Tag: accepted/tizen/5.0/unified/20181102.025319~14933 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=22023bea1b7c5eff958214a3fd6f7fc4ffeec76c;p=platform%2Fupstream%2FlibSkiaSharp.git Export SkPath equality operator. This change will allow external access to the SkPath equality operator. BUG=none Review URL: https://codereview.appspot.com/6500079 git-svn-id: http://skia.googlecode.com/svn/trunk@5418 2bbb7eff-a529-9590-31e7-b0007b416f81 --- diff --git a/src/core/SkPath.cpp b/src/core/SkPath.cpp index dd9249d..c6e349b 100644 --- a/src/core/SkPath.cpp +++ b/src/core/SkPath.cpp @@ -186,7 +186,7 @@ SkPath& SkPath::operator=(const SkPath& src) { return *this; } -bool operator==(const SkPath& a, const SkPath& b) { +SK_API bool operator==(const SkPath& a, const SkPath& b) { // note: don't need to look at isConvex or bounds, since just comparing the // raw data is sufficient.