[aat] Whitespace

This commit is contained in:
Behdad Esfahbod 2018-10-14 14:52:17 -07:00
parent 56b8dd17f6
commit 44af1f93ee
1 changed files with 3 additions and 2 deletions

View File

@ -224,7 +224,8 @@ struct LookupFormat8
private:
inline const T* get_value (hb_codepoint_t glyph_id) const
{
return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ? &valueArrayZ[glyph_id - firstGlyph] : nullptr;
return firstGlyph <= glyph_id && glyph_id - firstGlyph < glyphCount ?
&valueArrayZ[glyph_id - firstGlyph] : nullptr;
}
inline bool sanitize (hb_sanitize_context_t *c) const
@ -234,7 +235,7 @@ struct LookupFormat8
}
protected:
HBUINT16 format; /* Format identifier--format = 6 */
HBUINT16 format; /* Format identifier--format = 8 */
GlyphID firstGlyph; /* First glyph index included in the trimmed array. */
HBUINT16 glyphCount; /* Total number of glyphs (equivalent to the last
* glyph minus the value of firstGlyph plus 1). */