From: fmalita@google.com Date: Wed, 1 May 2013 20:35:51 +0000 (+0000) Subject: SkOpSegment.cpp gcc 4.7 build failure. X-Git-Tag: accepted/tizen/5.0/unified/20181102.025319~12548 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=22eb7944e07ed5761c901265ecb802ab608d302b;p=platform%2Fupstream%2FlibSkiaSharp.git SkOpSegment.cpp gcc 4.7 build failure. SkOpSegment.cpp:2240:5: error: ordered comparison of pointer with integer zero Caught by gcc 4.7 -Werror=extra. R=caryclark@google.com Review URL: https://codereview.chromium.org/14770005 git-svn-id: http://skia.googlecode.com/svn/trunk@8940 2bbb7eff-a529-9590-31e7-b0007b416f81 --- diff --git a/src/pathops/SkOpSegment.cpp b/src/pathops/SkOpSegment.cpp index 43afa08..b5702cb 100644 --- a/src/pathops/SkOpSegment.cpp +++ b/src/pathops/SkOpSegment.cpp @@ -2237,7 +2237,7 @@ SkOpSegment* SkOpSegment::nextChase(int* index, const int step, int* min, SkOpSp const SkOpSpan& endSpan = fTs[end]; SkOpSegment* other = endSpan.fOther; *index = endSpan.fOtherIndex; - SkASSERT(index >= 0); + SkASSERT(*index >= 0); int otherEnd = other->nextExactSpan(*index, step); SkASSERT(otherEnd >= 0); *min = SkMin32(*index, otherEnd);