This commit is contained in:
Behdad Esfahbod 2019-05-07 14:26:03 -07:00
parent c09d6c58e9
commit fa8c4ba811
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ struct hb_serialize_context_t
{ return _copy (src, hb_prioritize, hb_forward<Ts> (ds)...); }
template <typename Type>
hb_serialize_context_t &operator << (const Type &obj) { embed (obj); return *this; }
hb_serialize_context_t& operator << (const Type &obj) & { embed (obj); return *this; }
template <typename Type>
Type *extend_size (Type &obj, unsigned int size)