minor spacing fix (#1869)
This commit is contained in:
parent
d791446a93
commit
aab8e08487
|
@ -576,13 +576,13 @@ struct ArrayOf
|
||||||
operator writer_t () { return writer (); }
|
operator writer_t () { return writer (); }
|
||||||
|
|
||||||
hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const
|
hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const
|
||||||
{ return as_array ().sub_array (start_offset, count);}
|
{ return as_array ().sub_array (start_offset, count); }
|
||||||
hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) const
|
hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) const
|
||||||
{ return as_array ().sub_array (start_offset, count);}
|
{ return as_array ().sub_array (start_offset, count); }
|
||||||
hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int count)
|
hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int count)
|
||||||
{ return as_array ().sub_array (start_offset, count);}
|
{ return as_array ().sub_array (start_offset, count); }
|
||||||
hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */)
|
hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */)
|
||||||
{ return as_array ().sub_array (start_offset, count);}
|
{ return as_array ().sub_array (start_offset, count); }
|
||||||
|
|
||||||
bool serialize (hb_serialize_context_t *c, unsigned int items_len)
|
bool serialize (hb_serialize_context_t *c, unsigned int items_len)
|
||||||
{
|
{
|
||||||
|
@ -826,13 +826,13 @@ struct SortedArrayOf : ArrayOf<Type, LenType>
|
||||||
operator writer_t () { return writer (); }
|
operator writer_t () { return writer (); }
|
||||||
|
|
||||||
hb_sorted_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const
|
hb_sorted_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const
|
||||||
{ return as_array ().sub_array (start_offset, count);}
|
{ return as_array ().sub_array (start_offset, count); }
|
||||||
hb_sorted_array_t<const Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) const
|
hb_sorted_array_t<const Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) const
|
||||||
{ return as_array ().sub_array (start_offset, count);}
|
{ return as_array ().sub_array (start_offset, count); }
|
||||||
hb_sorted_array_t<Type> sub_array (unsigned int start_offset, unsigned int count)
|
hb_sorted_array_t<Type> sub_array (unsigned int start_offset, unsigned int count)
|
||||||
{ return as_array ().sub_array (start_offset, count);}
|
{ return as_array ().sub_array (start_offset, count); }
|
||||||
hb_sorted_array_t<Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */)
|
hb_sorted_array_t<Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */)
|
||||||
{ return as_array ().sub_array (start_offset, count);}
|
{ return as_array ().sub_array (start_offset, count); }
|
||||||
|
|
||||||
bool serialize (hb_serialize_context_t *c, unsigned int items_len)
|
bool serialize (hb_serialize_context_t *c, unsigned int items_len)
|
||||||
{
|
{
|
||||||
|
|
|
@ -85,7 +85,7 @@ struct VORG
|
||||||
this->vertYOrigins.len = it.len ();
|
this->vertYOrigins.len = it.len ();
|
||||||
|
|
||||||
+ it
|
+ it
|
||||||
| hb_apply ([c] (const VertOriginMetric& _) { c->copy (_);})
|
| hb_apply ([c] (const VertOriginMetric& _) { c->copy (_); })
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -143,13 +143,13 @@ struct hb_vector_t
|
||||||
operator writer_t () { return writer (); }
|
operator writer_t () { return writer (); }
|
||||||
|
|
||||||
hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const
|
hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int count) const
|
||||||
{ return as_array ().sub_array (start_offset, count);}
|
{ return as_array ().sub_array (start_offset, count); }
|
||||||
hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) const
|
hb_array_t<const Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */) const
|
||||||
{ return as_array ().sub_array (start_offset, count);}
|
{ return as_array ().sub_array (start_offset, count); }
|
||||||
hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int count)
|
hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int count)
|
||||||
{ return as_array ().sub_array (start_offset, count);}
|
{ return as_array ().sub_array (start_offset, count); }
|
||||||
hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */)
|
hb_array_t<Type> sub_array (unsigned int start_offset, unsigned int *count = nullptr /* IN/OUT */)
|
||||||
{ return as_array ().sub_array (start_offset, count);}
|
{ return as_array ().sub_array (start_offset, count); }
|
||||||
|
|
||||||
hb_sorted_array_t<Type> as_sorted_array ()
|
hb_sorted_array_t<Type> as_sorted_array ()
|
||||||
{ return hb_sorted_array (arrayZ, length); }
|
{ return hb_sorted_array (arrayZ, length); }
|
||||||
|
|
Loading…
Reference in New Issue