From aa2293a55eaa39f4e77b60851bbdee56b1120225 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 2 Apr 2019 17:42:10 -0700 Subject: [PATCH] [serialize] Minor --- src/hb-open-type.hh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/hb-open-type.hh b/src/hb-open-type.hh index 410a5f1..761a70f 100644 --- a/src/hb-open-type.hh +++ b/src/hb-open-type.hh @@ -287,16 +287,16 @@ struct OffsetTo : Offset if (has_null && &src == &Null (T)) return false; - c->serializer->push (); + auto *s = c->serializer; + + s->push (); bool ret = src.subset (c); if (ret || !has_null) - c->serializer->add_link (*this, - c->serializer->pop_pack (), - base); + s->add_link (*this, s->pop_pack (), base); else - c->serializer->pop_discard (); + s->pop_discard (); return ret; } -- 2.7.4