[serializer] Unbreak for now
This commit is contained in:
parent
10f062234e
commit
0b1fe7b716
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue