Index: include/core/SkPaint.h |
diff --git a/include/core/SkPaint.h b/include/core/SkPaint.h |
index 51e8848a00b6f3ad07d6ed72a513941377cb5247..a0def42f12077a207093675ac5f2488932775478 100644 |
--- a/include/core/SkPaint.h |
+++ b/include/core/SkPaint.h |
@@ -52,9 +52,11 @@ class SK_API SkPaint { |
public: |
SkPaint(); |
SkPaint(const SkPaint& paint); |
+ SkPaint(SkPaint&& paint); |
~SkPaint(); |
SkPaint& operator=(const SkPaint&); |
+ SkPaint& operator=(SkPaint&&); |
/** operator== may give false negatives: two paints that draw equivalently |
may return false. It will never give false positives: two paints that |