[var] Fix bug in HVAR/VVAR impl

This commit is contained in:
Behdad Esfahbod 2017-01-23 17:55:16 -08:00
parent bd3b11d926
commit 6074340371
1 changed files with 2 additions and 2 deletions

View File

@ -71,10 +71,10 @@ struct DeltaSetIndexMap
}
protected:
inline bool get_width (void) const
inline unsigned int get_width (void) const
{ return ((format >> 4) & 3) + 1; }
inline bool get_inner_bitcount (void) const
inline unsigned int get_inner_bitcount (void) const
{ return (format & 0xF) + 1; }
protected: