Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: include/core/SkMatrix.h

Issue 678153002: Add SK_API to global scope operators of SkMatrix (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkMatrix.h
diff --git a/include/core/SkMatrix.h b/include/core/SkMatrix.h
index 34f16077a45839b96447fbe380eb29feb61bdd99..a6edc1804fba2b0916056b8ae140290e74863629 100644
--- a/include/core/SkMatrix.h
+++ b/include/core/SkMatrix.h
@@ -539,8 +539,8 @@ public:
return 0 == memcmp(fMat, m.fMat, sizeof(fMat));
}
- friend bool operator==(const SkMatrix& a, const SkMatrix& b);
- friend bool operator!=(const SkMatrix& a, const SkMatrix& b) {
+ friend SK_API bool operator==(const SkMatrix& a, const SkMatrix& b);
+ friend SK_API bool operator!=(const SkMatrix& a, const SkMatrix& b) {
return !(a == b);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698