Add SK_API to global scope operators of SkMatrix

Review URL: https://codereview.chromium.org/678153002
This commit is contained in:
junov 2014-10-28 07:14:58 -07:00 committed by Commit bot
parent 15c746062e
commit ed53742e92

View File

@ -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);
}