Remove unused Coverage::iter_t::get_coverage()

This commit is contained in:
Behdad Esfahbod 2019-01-09 10:18:49 -08:00
parent af2067e87b
commit 93551669c5
1 changed files with 0 additions and 11 deletions

View File

@ -864,7 +864,6 @@ struct CoverageFormat1
bool more () const { return i < c->glyphArray.len; } bool more () const { return i < c->glyphArray.len; }
void next () { i++; } void next () { i++; }
hb_codepoint_t get_glyph () const { return c->glyphArray[i]; } hb_codepoint_t get_glyph () const { return c->glyphArray[i]; }
unsigned int get_coverage () const { return i; }
private: private:
const struct CoverageFormat1 *c; const struct CoverageFormat1 *c;
@ -1016,7 +1015,6 @@ struct CoverageFormat2
j++; j++;
} }
hb_codepoint_t get_glyph () const { return j; } hb_codepoint_t get_glyph () const { return j; }
unsigned int get_coverage () const { return coverage; }
private: private:
const struct CoverageFormat2 *c; const struct CoverageFormat2 *c;
@ -1167,15 +1165,6 @@ struct Coverage
default:return 0; default:return 0;
} }
} }
unsigned int get_coverage () const
{
switch (format)
{
case 1: return u.format1.get_coverage ();
case 2: return u.format2.get_coverage ();
default:return NOT_COVERED;
}
}
private: private:
unsigned int format; unsigned int format;