aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-14 18:33:03 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-14 18:33:03 +0000
commit8608463e17be8b3d96104307d0796a5c8ebca511 (patch)
tree300cece8ccf950491090b3aadfdf4fb02cb48fe3 /src
parentd9ae2314f58ccac54068a2e50a4a159cf3929c1a (diff)
fix broken build
change 'char' to 'int8_t' BUG=skia: NOTRY=true TBR=reed@google.com Author: caryclark@google.com Review URL: https://codereview.chromium.org/237263004 git-svn-id: http://skia.googlecode.com/svn/trunk@14186 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src')
-rw-r--r--src/pathops/SkOpAngle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pathops/SkOpAngle.h b/src/pathops/SkOpAngle.h
index 87a858a2db..01150e6ff7 100644
--- a/src/pathops/SkOpAngle.h
+++ b/src/pathops/SkOpAngle.h
@@ -119,8 +119,8 @@ private:
int fStart;
int fEnd;
int fSectorMask;
- char fSectorStart; // in 32nds of a circle
- char fSectorEnd;
+ int8_t fSectorStart; // in 32nds of a circle
+ int8_t fSectorEnd;
bool fIsCurve;
bool fStop; // set if ordered angle is greater than the previous
mutable bool fUnorderable; // this is editable by orderable()