[arrays] Remove unnecessary constructor from Supplier<>

Looks like operator hb_array_t<> from vector works here. :)
This commit is contained in:
Behdad Esfahbod 2018-12-16 23:33:03 -05:00
parent 507cac4943
commit 2a3fa3f82f
1 changed files with 0 additions and 5 deletions

View File

@ -654,11 +654,6 @@ struct Supplier : hb_array_t<const Type>
this->arrayZ = v.arrayZ;
this->len = v.len;
}
Supplier (const hb_vector_t<Type> &v)
{
this->arrayZ = (const Type *) v;
this->len = v.len;
}
Supplier<Type> & operator += (unsigned int count)
{