[serialize] Minor

This commit is contained in:
Behdad Esfahbod 2019-03-30 18:00:03 -07:00
parent a43290192b
commit 6f69c9d26f
1 changed files with 5 additions and 4 deletions

View File

@ -53,7 +53,8 @@ struct hb_serialize_context_t
objidx_t objidx; objidx_t objidx;
}; };
hb_bytes_t bytes; char *head;
unsigned length;
hb_vector_t<link_t> links; hb_vector_t<link_t> links;
}; };
@ -83,7 +84,7 @@ struct hb_serialize_context_t
this->current.resize (0); this->current.resize (0);
this->packed.resize (0); this->packed.resize (0);
this->packed.push ()->bytes.arrayZ = this->end; this->packed.push ()->head = this->end;
this->packed_map.reset (); this->packed_map.reset ();
} }
@ -162,9 +163,9 @@ struct hb_serialize_context_t
void discard_stale_objects () void discard_stale_objects ()
{ {
while (packed.length > 1 && while (packed.length > 1 &&
packed.tail ().bytes.arrayZ < tail) packed.tail ().head < tail)
packed.pop (); packed.pop ();
assert (packed.tail ().bytes.arrayZ == tail); assert (packed.tail ().head == tail);
} }
unsigned int length () const { return this->head - current.tail ().head; } unsigned int length () const { return this->head - current.tail ().head; }