From 22023bea1b7c5eff958214a3fd6f7fc4ffeec76c Mon Sep 17 00:00:00 2001 From: "wjmaclean@chromium.org" Date: Thu, 6 Sep 2012 18:42:03 +0000 Subject: [PATCH] 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 --- src/core/SkPath.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.7.4