Remove unused table reference

This commit is contained in:
Behdad Esfahbod 2018-08-02 01:44:20 -07:00
parent 443de26fa5
commit 66952ec47b
1 changed files with 4 additions and 5 deletions

View File

@ -179,11 +179,10 @@ struct hb_ot_layout_t
/* TODO Move the following out of this struct. */ /* TODO Move the following out of this struct. */
hb_face_t *face; /* MUST be before the lazy loaders. */ hb_face_t *face; /* MUST be before the lazy loaders. */
hb_table_lazy_loader_t<1, struct OT::BASE> base; hb_table_lazy_loader_t<1, struct OT::MATH> math;
hb_table_lazy_loader_t<2, struct OT::MATH> math; hb_table_lazy_loader_t<2, struct OT::fvar> fvar;
hb_table_lazy_loader_t<3, struct OT::fvar> fvar; hb_table_lazy_loader_t<3, struct OT::avar> avar;
hb_table_lazy_loader_t<4, struct OT::avar> avar; hb_table_lazy_loader_t<4, struct AAT::morx> morx;
hb_table_lazy_loader_t<5, struct AAT::morx> morx;
}; };