[arrays] Remove unnecessary constructor from Supplier<>
Looks like operator hb_array_t<> from vector works here. :)
This commit is contained in:
parent
507cac4943
commit
2a3fa3f82f
|
@ -654,11 +654,6 @@ struct Supplier : hb_array_t<const Type>
|
||||||
this->arrayZ = v.arrayZ;
|
this->arrayZ = v.arrayZ;
|
||||||
this->len = v.len;
|
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)
|
Supplier<Type> & operator += (unsigned int count)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue