[serializer] Unbreak for now

This commit is contained in:
Behdad Esfahbod 2019-03-30 18:48:26 -07:00
parent 10f062234e
commit 0b1fe7b716
1 changed files with 3 additions and 2 deletions

View File

@ -111,7 +111,7 @@ struct hb_serialize_context_t
assert (!current.length); assert (!current.length);
return push<Type> (); return push<Type> ();
} }
objidx_t end_serialize () void end_serialize ()
{ {
DEBUG_MSG_LEVEL (SERIALIZE, this->start, 0, -1, DEBUG_MSG_LEVEL (SERIALIZE, this->start, 0, -1,
"end [%p..%p] serialized %u bytes; %s", "end [%p..%p] serialized %u bytes; %s",
@ -122,7 +122,8 @@ struct hb_serialize_context_t
/* TODO Propagate errors. */ /* TODO Propagate errors. */
assert (current.length == 1); assert (current.length == 1);
return pop_pack (); /* TODO Enable when callers are updated. */
//pop_pack ();
} }
template <typename Type> template <typename Type>