[var] Fix bug in HVAR/VVAR impl
This commit is contained in:
parent
bd3b11d926
commit
6074340371
|
@ -71,10 +71,10 @@ struct DeltaSetIndexMap
|
||||||
}
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
inline bool get_width (void) const
|
inline unsigned int get_width (void) const
|
||||||
{ return ((format >> 4) & 3) + 1; }
|
{ return ((format >> 4) & 3) + 1; }
|
||||||
|
|
||||||
inline bool get_inner_bitcount (void) const
|
inline unsigned int get_inner_bitcount (void) const
|
||||||
{ return (format & 0xF) + 1; }
|
{ return (format & 0xF) + 1; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
Loading…
Reference in New Issue