diff options
author | bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-03-22 00:25:34 +0000 |
---|---|---|
committer | bungeman@google.com <bungeman@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-03-22 00:25:34 +0000 |
commit | c8f0d606e53823ab8e35bebdf2bbb023eae2bbbd (patch) | |
tree | 372027fd325650bb9f82efc64115207bba3d27fa /include | |
parent | 04c32a857e46a39090648dbe02c8b966863ab162 (diff) |
Fix r13897.
git-svn-id: http://skia.googlecode.com/svn/trunk@13901 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r-- | include/ports/SkFontMgr_indirect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ports/SkFontMgr_indirect.h b/include/ports/SkFontMgr_indirect.h index b09c449aab..d5289bb954 100644 --- a/include/ports/SkFontMgr_indirect.h +++ b/include/ports/SkFontMgr_indirect.h @@ -78,8 +78,8 @@ private: , fTtcIndex(that.fTtcIndex) , fTypeface(that.fTypeface) { - SkDEBUGCODE(that.fDataId = -1;) - SkDEBUGCODE(that.fTtcIndex = -1;) + SkDEBUGCODE(that.fDataId = SkFontIdentity::kInvalidDataId;) + SkDEBUGCODE(that.fTtcIndex = 0xbbadbeef;) that.fTypeface = NULL; } |