add more SK_WARN_UNUSED_RESULT attributes to functions that ignore out-params if...
authorreed <reed@google.com>
Thu, 26 May 2016 19:13:26 +0000 (12:13 -0700)
committerCommit bot <commit-bot@chromium.org>
Thu, 26 May 2016 19:13:26 +0000 (12:13 -0700)
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2012943003

TBR=

Review-Url: https://codereview.chromium.org/2012943003

src/core/SkCubicClipper.h

index 617086e..f00c09a 100644 (file)
@@ -24,9 +24,9 @@ public:
 
     void setClip(const SkIRect& clip);
 
-    bool clipCubic(const SkPoint src[4], SkPoint dst[4]);
+    bool SK_WARN_UNUSED_RESULT clipCubic(const SkPoint src[4], SkPoint dst[4]);
 
-    static bool ChopMonoAtY(const SkPoint pts[4], SkScalar y, SkScalar* t);
+    static bool SK_WARN_UNUSED_RESULT ChopMonoAtY(const SkPoint pts[4], SkScalar y, SkScalar* t);
 private:
     SkRect      fClip;
 };