From 66952ec47b5f09d88b83fb6a71b1cdb26c53668d Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 2 Aug 2018 01:44:20 -0700 Subject: [PATCH] Remove unused table reference --- src/hb-ot-layout-private.hh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/hb-ot-layout-private.hh b/src/hb-ot-layout-private.hh index fc2e57e7d..c88557239 100644 --- a/src/hb-ot-layout-private.hh +++ b/src/hb-ot-layout-private.hh @@ -179,11 +179,10 @@ struct hb_ot_layout_t /* TODO Move the following out of this struct. */ 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<2, struct OT::MATH> math; - hb_table_lazy_loader_t<3, struct OT::fvar> fvar; - hb_table_lazy_loader_t<4, struct OT::avar> avar; - hb_table_lazy_loader_t<5, struct AAT::morx> morx; + hb_table_lazy_loader_t<1, struct OT::MATH> math; + hb_table_lazy_loader_t<2, struct OT::fvar> fvar; + hb_table_lazy_loader_t<3, struct OT::avar> avar; + hb_table_lazy_loader_t<4, struct AAT::morx> morx; };